DSA Record Programs
DSA Record Programs
2. Develop a Program to create an array of n elements and search for an element using the
following search techniques.
2.a. Linear Search
3. Develop a Program to create an array of n integers and sort them using Bubble Sort
technique.
4. Develop a Program to create an array of n integers and sort them using Selection Sort
technique.
5. Develop a Program to create an array of n integers and sort them using Quick Sort
technique.
6. Develop a Program to create an array of n integers and sort them using Merge Sort
technique.
7. Develop a Program to perform the following operations on Singly Linked List.
Creation, Traverse, Insertion, Deletion, Searching, Counting
8. Develop a Program to perform the following operations on Doubly Linked List.
Creation, Traverse, Insertion, Deletion, Searching, Counting
9. Develop a Program to implement Stack Operations using an Array.
10. Develop a Program to implement Queue Operations using an Array.
11. Develop a Program to implement Stack Operations using a Linked List.
12. Develop a Program to implement Queue Operations using a Linked List.
13. Develop a Program to convert an Infix expression to Postfix Expression.
14. Develop a Program to evaluate the given Postfix Expression.
15. Develop a Program to perform the following operations on Binary Search Tree
Creation, Traverse (Pre Order, In Order, Post Order), Insertion, Deletion, Searching.