C++ Projects

C++ Projects on DSA applications

image

Sudoku Solver

Published 2 days ago5 min read8 comments
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 →
image

Shortest Path Finder

Published 3 months ago3 min read26 comments
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 →
image

N-queen Visualizer

Published 1 month ago8 min read12 comments
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 →
image

Tic Tac Toe

Published 2 months ago10 min read23 comments
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 →