Data Structure Experiment List
Data Structure Experiment List
Experiment Name
No.
2) Write a program of array for Binary Search with Iteration and Recursion.
1) Write a program of Singly Linked List to perform insertion, deletion and display the elements.
2) Write a program of Doubly Linked List to perform insertion, deletion and display the elements.
5. Implementation of Stack
Write a program for Stack implementation using Linked List containing functions Push(), Pop() and
Peek().
6. Implementation of Queue.
1. Write a program to implement Queue using Linked List containing functions enqueue(), dequeue()
and display().
2. Write a program to implement Circular Queue using array containing functions enqueue(),
dequeue() and display().