[go: up one dir, main page]

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

Lab Internal Problem Statements

The document outlines a series of programming tasks focused on data structures and algorithms. It includes the implementation of various search algorithms, sorting methods, linked lists, stacks, queues, and tree traversals. Each task specifies the development of a program for a specific data structure or algorithmic concept.
Copyright
© © All Rights Reserved
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)
13 views1 page

Lab Internal Problem Statements

The document outlines a series of programming tasks focused on data structures and algorithms. It includes the implementation of various search algorithms, sorting methods, linked lists, stacks, queues, and tree traversals. Each task specifies the development of a program for a specific data structure or algorithmic concept.
Copyright
© © All Rights Reserved
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

1. Develop a program to implement linear search.

2. Develop a program to implement binary search


3. Develop a program to implement selection sort
4. Develop a program to implement insertion sort
5. Develop a program to implement bubble sort
6. Insert an element at beginning and delete at end in a Single Linked List
7. Develop a program to implement single linked list (insert before, insert after)
8. Develop a program to implement single linked list (delete before, delete after)
9. Develop a program to implement circular linked list (insert begin, delete end)
10. Develop a program to implement circular linked list (insert end, delete begin)
11. Develop a program to implement double linked list (create, display)
12. Develop a program to implement stack using arrays
13. Develop a program to implement stack using linked list
14. Implement the evaluation of a Postfix expression
15. Check for Symmetry of a string using Stack
16. Develop a program to implement queues using arrays
17. Develop a program to implement queue using linked list
18. Simulation of simple printer queue system
19. Circular Queue using arrays
20. Inorder, Preorder, Postorder Traversals on Binary Search Tree

You might also like