Source Code: Difference between revisions
From Krupczak.org
No edit summary |
|||
| Line 6: | Line 6: | ||
I wrote a Java/Swing GUI front end for my Java Sudoku puzzle solver. Its currently fairly crude. | I wrote a Java/Swing GUI front end for my Java Sudoku puzzle solver. Its currently fairly crude. | ||
== Concentric Circles Layout == | |||
I wrote this Java/Swing class, for use in conjunction with the [JGraph http://www.jpgrah.org] toolkit, to layout vertices in concentric circles. Nodes are placed within concentric circles based on the number of edges they connect to -- most to least are placed inner to outer. | |||
Revision as of 12:05, 26 March 2008
Java Sudoku Puzzle Solver
I wrote a Java program to solve Sudoku puzzles. It uses a recursive brute-force algorithm to try all possible combinations.
Java Sudoku Puzzle GUI
I wrote a Java/Swing GUI front end for my Java Sudoku puzzle solver. Its currently fairly crude.
Concentric Circles Layout
I wrote this Java/Swing class, for use in conjunction with the [JGraph http://www.jpgrah.org] toolkit, to layout vertices in concentric circles. Nodes are placed within concentric circles based on the number of edges they connect to -- most to least are placed inner to outer.
