LIST OF EXPERIMENTS:
- Perform Linear Search and Binary Search on an array.
- Program to implement a Stack using an array.
- Create a stack and perform Pop, Push operations on the stack using a Linear Linked list.
- Program to implement Queue using an array.
- Create a Linear Queue using Linked List and implement different operations such as insert, delete, and display the queue elements.
- Implement sparse matrices using arrays.
- Implement the following sorting techniques:
- Insertion sort
- Merge sort
- Bubble sort
- Selection sort
- Quick sort
- Create a linked list with nodes having information about a student. Insert a new node at the specified position.
- Create a doubly linked list with nodes having information about an employee and perform Insertion at front of doubly linked list and perform deletion at end of that doubly linked list.
- Create a circular linked list having information about a college and perform Insertion at the front end and perform deletion at the end.
- Program to implement BFS and DFS Traversal of a graph.
- Create a Binary Tree and perform Tree Traversals (Preorder, Postorder, Inorder) using the concept of recursion.
- Implement insertion, deletion, and display (Inorder, Preorder, Postorder) on binary search tree with the information in the tree about the details of an automobile (type, company, year of make).
No comments:
Post a Comment