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

Sr. No. List of Experiment: Subject: Programming & Data Structures

This document contains a list of 19 programming experiments related to data structures and algorithms. The experiments cover implementing common data structures like stacks, queues, linked lists and trees using arrays and pointers in C. They also include sorting algorithms like bubble sort, merge sort and graph algorithms like Dijkstra's. The final experiment involves simulating a producer-consumer problem using a circular queue.

Uploaded by

Rahul Hiware
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views1 page

Sr. No. List of Experiment: Subject: Programming & Data Structures

This document contains a list of 19 programming experiments related to data structures and algorithms. The experiments cover implementing common data structures like stacks, queues, linked lists and trees using arrays and pointers in C. They also include sorting algorithms like bubble sort, merge sort and graph algorithms like Dijkstra's. The final experiment involves simulating a producer-consumer problem using a circular queue.

Uploaded by

Rahul Hiware
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Subject: Programming & Data Structures

Sr. No.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

List of Experiment
Write and execute a program in C to implement stack using arrays Write and execute a program in C to implement queue using arrays Write and execute a program in C to implement simple linked list Write and execute a program in C to implement stack using linked list Write and execute a program in C to implement queue using linked list Write and execute a program in C to implement doubly linked list Write and execute a program in C to implement circular linked list Write and execute a program in C to reverse a singly and doubly linked list Write and execute a program in C to insert a node in a linked list in a sorted fashion Write and execute a program in C to implement binary tree, finding the depth of a tree Write and execute a program in C to implement inorder, preorder and postorder traversals Write and execute a program in C to find if two trees are identical Write and execute a program in C to implement graph using linked list Write and execute a program in C to implement bubble sort and selection sort using menu driven program C to implement merge sort Write and execute a program in Implement Dijkstra's algorithm using priority queues Implement a backtracking algorithm for Knapsack problem Write & Execute a program in C to implement array based circular queue and use it to simulate a producer-consumer problem Open Ended Experiment

You might also like