Posts

Assignment 6: Write a recursive program to find the solution of placing n queens on chess board so that no queen takes each other (backtracking).

Assignment 5: Write a program to print shortest path and cost for the directed graph using Bellman Ford algorithm (Dynamic Programming) and verify the complexity.

Assignment 4: Write a program to implement longest common subsequence (Dynamic Programming) and verify the complexity.

Assignment 3: Write a program to implement optimal storage tape using greedy approach.