Codes for Practical experiments of Analysis of Algorithm (Semester IV - Computer Engineering - Mumbai University)
- Implement Insertion Sort and Selection Sort algorithms and derive its time complexity.
- Implement Merge Sort and Quick Sort algorithms and derive its time complexity.
- Write a program to find Single Source Shortest Path for a directed graph using Greedy Technique.
- Implement Prims and Kruskal’s algorithm for finding Minimum cost spanning tree using Greedy Method.
- Write a program to solve the 0/1 Knapsack problem using Dynamic Programming.
- Write a program to find Longest Common Subsequence for two sequences using Dynamic Programming
- Write a program to solve the Graph Coloring problem using Backtracking.
- Write a program to solve the Sum of Subsets problem using Backtracking.
- Write a program to perform String matching using Rabin Karp Algorithm.
- Write a program to perform String Matching using Knutt Morris Pratt Algorithm.