Table of Content: Lab No. Practical Date Sign
Table of Content: Lab No. Practical Date Sign
/CSE/2ND YEAR/2018-22
TABLE OF CONTENT
Lab Practical Date Sign.
No.
1. W.A.P. to perform the following operations on 1D and 2D arrays:
1.1 Insertion (at beginning, at end and at position input by user) in:
1.1a 1D array
1.1b 2D array
25/07/19
1.2 Deletion (at beginning, at end and at position input by user) in:
1.2a 1D array
1.2b 2D array
10. W.A.P. to simulate the working recursion using the stack. Show each
step on the output screen..
13. Write a C++ program to simulate the working of a circular queue of 26/09/19
integers using an array.Provide the following operations:
a) insert b) delete c) Display
8. 15. Write a C++ program using dynamic variable & pointers to construct
a singly linked list consisting of the following information in each node.
Student id (integer), student name (character string) & semester (integer).
9. 18. Write C++ program to construct a binary search tree of integers and
traverse the tree using all the methods i.e. inorder, preorder & postorder
to display the elements in the tree.
19 Write a C++ program to sort a list of N integers using the quick sort 24/10/19
algorithm.
20. Write a C++ program to sort a list of N integers using Heap sort
algorithm.