backtracking-questions
There are 3 repositories under backtracking-questions topic.
ajay-dhangar/backtracking
Backtracking
JeherillaJanwar/n-queens
The shortest way solution to the n-queens question | 8x8 board
BaseMax/NQueensPromisingC
This is a promising implementation of the n-Queens problem in C. It uses a recursive backtracking algorithm to find all solutions to the n-Queens problem. It is a promising implementation because it uses a heuristic to prune the search tree. The heuristic is to only place a queen in a column if it is not in check with any other queens.