Problem Statement 1.
Implement a C program to perform following operations on
circular queue using array-i) enqueue 8 integer elements ii)
Display queue values iii) deque 3 elements
Problem Statement 2. Implement a C program to perform following operations on linear
queue using array-i) enqueue 6 integer elements ii) Display queue
values iii) deque 3 elements
Problem Statement 3. Implement a C program to perform following operations on linear
queue using array-i) enqueue 5 characters ii) Display queue
values iii) deque 3 characters
Problem Statement 4. Pizza parlor accepting maximum N orders. Orders are served in
first come first served basis. Write a C program to simulate the
system with simple linear queue using array.
Problem Statement 5. Pizza parlor accepting maximum N orders. Orders are served in
first come first served basis. Write a C program to simulate the
system with circular queue using array.
Problem Statement 6. Implement a C program to create Binary Search Tree (BST) and
display its values using inorder traversing algorithm.
Problem Statement 7. Implement a C program to create Binary Search Tree (BST) and
display its values using preorder traversing algorithm.
Problem Statement 8. Implement a C program to create Binary Search Tree (BST) and
display its values using postorder traversing algorithm.
Problem Statement 9. Implement a C program to create Binary Search Tree (BST) and
write a function to search an element.
Problem Statement 10. Implement a C program to create Binary Search Tree (BST) to
store characters and display its values using postorder traversing
algorithm.
Problem Statement 11. Implement a C program to create adjacency matrix of a graph and
display graph the node values using Breadth First Search
algorithm (BFS)
0 2
1 3
Problem Statement 12. Implement a C program to create adjacency matrix of a graph and
display graph the node values using Breadth First Search
algorithm (BFS)
0 2
1 3
Problem Statement 13. Implement a C program to create adjacency matrix of a graph and
display graph the node values using Breadth First Search
algorithm (BFS)
0 2
1 3
4
Problem Statement 14. Implement a C program to create adjacency matrix of a graph and
display graph the node values using Depth First Search algorithm
(DFS)
0 2
1 3
Problem Statement 15. Implement a C program to create adjacency matrix of a graph and
display graph the node values using Depth First Search algorithm
(DFS)
0 2
1 3