0% found this document useful (0 votes)
13 views1 page

List of Experiment

The document outlines a list of programming experiments focused on data structures and algorithms. It includes tasks for implementing arrays, linked lists, stacks, queues, tree operations, searching, sorting, and graph algorithms. Additionally, it features an extra experiment for implementing a doubly linked list with basic operations.

Uploaded by

bhavya agrawal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views1 page

List of Experiment

The document outlines a list of programming experiments focused on data structures and algorithms. It includes tasks for implementing arrays, linked lists, stacks, queues, tree operations, searching, sorting, and graph algorithms. Additionally, it features an extra experiment for implementing a doubly linked list with basic operations.

Uploaded by

bhavya agrawal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

List of Experiment

1. Write a program to perform the following operations: Create an array of elements, delete
any element, search any element, Insertion of any element and display the results to
implement list using an array.
2. Write a program to perform the following operations: Create an array of elements, delete
any element, search any element, Insertion of any element and display the results to
implement singly linked list.
3. Write a program to implement Stack operations such as push, pop and display using:
(a) Array.
(b) Linked list.
4. Write a program to implement Queue operations such as enqueue, dequeue and display
using:
(a) Array.
(b) Linked list.
5. Write a program to implement the conversion of infix to postfix expression using Stack.
6. Write a program to implement the binary trees and its operations.
7. Write a program to implement the binary search trees.
8. Write a program for implementing the traversal algorithm for:
(a) Depth first traversal.
(b) Breadth first traversal.
9. Write a program to implement the concept of searching:
(a) Linear search.
(b) Binary search
10. Write a program to implement the concept of Sorting:
(a) Bubble sort.
(b) Insertion sort.
(c) Merge sort.
11. Write a program to implement:
(a) Prim’s algorithm
(b) Kruskal’s algorithm
12. Write a program to implement the shortest path using Dijkstra’s algorithm.

Additional Experiment

13. Write a program to implement doubly linked list with Insert, Delete and Display
operations.

You might also like