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

DSA Lab Programming Questions

The document lists various programming tasks related to data structures and algorithms (DSA) that include implementing stacks, queues, linked lists, and various sorting and searching algorithms. It also includes recursive functions for calculating factorials, Fibonacci sequences, GCD, and solving the Tower of Hanoi problem. Additionally, it covers graph algorithms like Kruskal's Algorithm and tree operations such as finding height and depth.

Uploaded by

rameshtharu076
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)
96 views1 page

DSA Lab Programming Questions

The document lists various programming tasks related to data structures and algorithms (DSA) that include implementing stacks, queues, linked lists, and various sorting and searching algorithms. It also includes recursive functions for calculating factorials, Fibonacci sequences, GCD, and solving the Tower of Hanoi problem. Additionally, it covers graph algorithms like Kruskal's Algorithm and tree operations such as finding height and depth.

Uploaded by

rameshtharu076
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

DSA Lab Questions

1. Write a code to implement the stack


2. Write a program to find the factorial of positive integer N using recursion
3. Write a program to display Fibonacci sequence using recursion
4. Write a program to find GCD (HCF) of any two numbers using recursion
5. Write a program to find solution of TOH problem(Tower of Hanoi) using
recursion
6. Write a program array to implementation of Circular Queue
7. Write a program to implements of Linear Search
8. Write a program in Binary Search
9. Write a program to implement Bubble Sort
[Link] a program to implement Selected Sort
[Link] a program to sort an array in ascending order using Insertion
[Link] a program to implemented the merge sort
[Link] a program to implement the Adjacency Matrix
[Link] a program to implement the Quick Sort
[Link] a program to Implement of Singly Linked list
[Link] a program to Implementation of Doubly Linked List (DLL)
[Link] a program to implement Circular linked list
[Link] a program to implement the Adjacency Matrix
[Link] a program to implement the Kruskal's Algorithm
[Link] a program to Implementation of Stack using linked list
[Link] a program to Implementation of Queue using Linked
[Link] a program to convert an expression in infix notation to postfix notation
[Link] a program to find the height and depth of given Tree

You might also like