nqueens-problem
There are 168 repositories under nqueens-problem topic.
hassanzadehmahdi/N-Queen-Problem-using-Genetic-Algorithm
The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other.
MohammadAsadolahi/nQueens-problem-solved-with-evolutionary-strategy-in-python
find arrangement for n Queens in n*n board of chees using Genetic algorithms
AhmedNasserabdelkareem/N-Queens
Python Implementation for N-Queen problem using Hill Climbing, Genetic Algorithm, K-Beam Local search and CSP
mirzaeiyan/nqueens-genetic
Solving the nqueens problem using genetic algorithm
HxnDev/8-Queen-Problem-Solver-in-Python
The 8-queens problems asks us to place 8 queens on a chessboard so that no two can capture one another; that is, no two are on the same row, column, or diagonal.
Johnny-Knighten/hill-climbing
Hill Climbing and Hill Climbing With Random Restart implemented in Java.
SoumyadeepB/Design-and-Analysis-of-Algorithms
Design and Analysis of Algorithms
theabhayprajapati/nqueens-board
An Online n queens board
alirezaafzalaghaei/genetic-algorithm-nqueens
A simple python(also cython) script to solve and visualize N-Queens problem
arman324/Genetic-Algorithm-N-Queen
Solving N-queens problem with Genetic Algorithm - Artificial Intelligence
BaseMax/N-QueenGenetic
Solving N-Queen problem using Genetic Algorithm.
jindal2209/nqueen
An interactive visualizer for N-Queen problem using backtracking.
n-roussos/Parallel-Programming-with-OpenMP
This repository lists 4 problems solved using C. Each problem has its own serial and parallel implementations. For the latter, the OpenMP API was utilized.
NassarX/nqueens-optimization
Optimizing the NQueen Puzzle using different optimization techniques including backtracking, local search, and genetic algorithm (GA) for evolving towards a state where no two queens are attacking each other.
open-byte/n-queens-genetic-algorithm
Genetic Algorithm for Solving NQueens Problem
alexemanuel/NQueens-problem
Implementation of search algorithms, BFS (Breadth First Search) and DFS (Depth First Search), to solve the NQueens problem.
ankitjha2603/algorithm-visualizer
This is a project to visualize algorithms using HTML, CSS, JavaScript. An algorithm is a set of instructions for solving a problem or accomplishing a task.
anshumagahlot22/Recursion-Programs
//contains recursion programs for practice and learning
berkkirtay/adaptive-genetic-algorithm-for-n-queens
An Adaptive Genetic Algorithm for N-Queens Problem
bhargav-joshi/Advanced-Algorithms-Problems
Advanced Algorithms Problems | Engineering
hassan11196/AI-Assignments
AI Assignments - FAST NUCES (Karachi) - CS401 - Spring 2020
joaobap/go-hill-climbing
N-Queens problem solution using Hill-Climbing algorithm rewritten from Common Lisp to Go (https://github.com/joaobap/clisp-hill-climbing)
jojorancu/NQueen
Basically it is a solution for "N-Queen" Problem. I added mix of humor to the code. Sounds like "The King" wanted date all "The Queen" :)
julienschmidt/N-Queens
Optimized algorithm to find all solutions for the N-Queens-Problem in Java
lnardon/ParallelComputing
This repository contains a parallel computing solution for the n-queens problem using brute force and OpenMPI, implemented as part of the final assignment for my university course in Parallel Computing.
NekSfyris/Simulated-Annealing-Min-Conflicts_N_Queens
Implementation of the N-Queens problem by using Simulated Annealing as a local search algorithm and Min Conflicts as the CSP (Constraint Satisfaction Problem) algorithm.
NLinh2911/N-queens-problem
Solve N queens problem with an algorithm written in JavaScript. Solutions are displayed in a chess board drawn by D3js. You can choose the n size between 4 and 10.
40021441054102/Algorithms
Algorithm Design Course - Dr. Omid Sojoodi
Abrarulhassan-786/n-Queen-Problem
The solution is [3,1,2,4]. The first queen should be placed in the 1st row 3rd column, the second queen should be placed in 2nd row 1st column, the third queen should be placed in 3rd row 2nd column and finally, the 4rth queen should be placed in 4rth row 4rth column.
alimium/n-queens-genetic-algorithm
Solving the N-Queens problem using genetic algorithm.
DenseLance/hopfield-networks
Quick guide to Hopfield Networks for image restoration and NP-hard problems.
EthanJamesLew/pulp-sat-vs-ilp
comparing mixed-integer linear program solvers with sat solvers using the python PuLP library
shivam6862/DSA-Visualizer
It contains various algorithms related to sorting, graphs, trees, and General problems.
ZakariaYousfi/NQueens-Problem-Blind-Metaheuristics
A uni project where we implemented blind search as well as metaheuristics approches to solving the NQueens Problem.