mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-12-26 23:21:18 +08:00
Move nQueens bitwise version to the same folder with nQueens algorithm.
This commit is contained in:
parent
18ba3a4db3
commit
20159312be
@ -1,9 +0,0 @@
|
|||||||
# N-Queens Problem with Bitwise Solution
|
|
||||||
|
|
||||||
Write a function that will find all possible solutions to the N queens problem for a given N.
|
|
||||||
|
|
||||||
## References
|
|
||||||
|
|
||||||
- [Wikipedia](https://en.wikipedia.org/wiki/Eight_queens_puzzle)
|
|
||||||
- [GREG TROWBRIDGE](http://gregtrowbridge.com/a-bitwise-solution-to-the-n-queens-problem-in-javascript/)
|
|
||||||
- [Backtracking Algorithms in MCPL using Bit Patterns and Recursion](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.51.7113&rep=rep1&type=pdf)
|
|
@ -71,3 +71,7 @@ and return false.
|
|||||||
- [GeeksForGeeks](https://www.geeksforgeeks.org/backtracking-set-3-n-queen-problem/)
|
- [GeeksForGeeks](https://www.geeksforgeeks.org/backtracking-set-3-n-queen-problem/)
|
||||||
- [On YouTube by Abdul Bari](https://www.youtube.com/watch?v=xFv_Hl4B83A&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)
|
- [On YouTube by Abdul Bari](https://www.youtube.com/watch?v=xFv_Hl4B83A&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)
|
||||||
- [On YouTube by Tushar Roy](https://www.youtube.com/watch?v=xouin83ebxE&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)
|
- [On YouTube by Tushar Roy](https://www.youtube.com/watch?v=xouin83ebxE&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)
|
||||||
|
- Bitwise Solution
|
||||||
|
- [Wikipedia](https://en.wikipedia.org/wiki/Eight_queens_puzzle)
|
||||||
|
- [GREG TROWBRIDGE](http://gregtrowbridge.com/a-bitwise-solution-to-the-n-queens-problem-in-javascript/)
|
||||||
|
- [Backtracking Algorithms in MCPL using Bit Patterns and Recursion](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.51.7113&rep=rep1&type=pdf)
|
||||||
|
Loading…
Reference in New Issue
Block a user