Parallel Computing with Pthreads
-
Updated
Aug 5, 2019 - C
Parallel Computing with Pthreads
N-Queens problem solvers and solution counters implemented using a constrained DFS algorithm
Exercício: N Queen Problem / Backtracking
Fast N-Queens Puzzle solver
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.
Graphical Implementation of N-Queen's Algorithm using Back Tracking
Solve the N-Queen problem using the genetic algorithm
Add a description, image, and links to the n-queens topic page so that developers can more easily learn about it.
To associate your repository with the n-queens topic, visit your repo's landing page and select "manage topics."