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
Programs List for
Data Structures & Analysis Of Algorithms Lab (KCA253)
Write a program in C or C++ for following:
1. To implement addition and multiplication of two 2D arrays. 2. To transpose a 2D array. 3. To implement stack using array 4. To implement queue using array. 5. To implement circular queue using array. 6. To implement stack using linked list. 7. To implement queue using linked list. 8. To implement BFS using linked list. 9. To implement DFS using linked list. 10. To implement Linear Search. 11. 11.To implement Binary Search. 12. To implement Bubble Sorting. 13. To implement Selection Sorting. 14. To implement Insertion Sorting. 15. To implement Merge Sorting. 16. To implement Heap Sorting. 17. To implement Matrix Multiplication by strassen’s algorithm 18. Find Minimum Spanning Tree using Kruskal’s Algorithm