C++ Projects on DSA applications
Sudoku Solver
Sudoku originally called Number Place
is a logic-based combinatorial number-placement puzzle. In classic Sudoku,
the objective is to fill a 9 × 9 grid with digits so that each column, each row, and each of the nine 3 × 3 subgrids that...
Read more →
Shortest Path Finder
Dijkstra's algorithm is an algorithm for finding the shortest paths between nodes in a weighted graph, which may represent, for example, road networks. It was conceived by computer scientist Edsger W. Dijkstra in 1956 and published three years later...
Read more →
N-queen Visualizer
N-queen Visualizer is a project where we try to put the queen in chess board. We can put the queens in such way that they can't attack each other...
Read more →
Tic Tac Toe
Tic-tac-toe is a paper-and-pencil game for two players who take turns
marking the spaces in a three-by-three grid with X or O. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner...
Read more →