|
Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
Files | |
| file | generate_parentheses.cpp |
| Well-formed Generated Parentheses with all combinations. | |
| file | graph_coloring.cpp |
| prints the assigned colors using Graph Coloring algorithm | |
| file | knight_tour.cpp |
| Knight's tour algorithm | |
| file | minimax.cpp |
| returns which is the longest/shortest number using minimax algorithm | |
| file | n_queens.cpp |
| Eight Queens puzzle | |
| file | n_queens_all_solution_optimised.cpp |
| N queens all optimized | |
| file | nqueen_print_all_solutions.cpp |
| Eight Queens puzzle, printing all solutions | |
| file | rat_maze.cpp |
| Implements Rat in a Maze algorithm. | |
| file | subarray_sum.cpp |
| Subset-sum (only continuous subsets) problem | |
| file | subset_sum.cpp |
| Implementation of the Subset Sum problem. | |
| file | sudoku_solver.cpp |
| Sudoku Solver algorithm. | |
| file | wildcard_matching.cpp |
| Implementation of the Wildcard Matching problem. | |