Using the algorithmic technique of backtracking to solve the famous N Queens chess puzzle.

The N Queens Puzzle

The N Queens puzzle comes to us from the world of chess, prior to the advent of computers it was a logical puzzle played

Square Root

The Square of a number, X2, is any number multiplied by its self. 2= 4, 42 = 16, 6= 36 etc. The square root of a number is the derived by reducing a number so that the &rad

Detecting a Cycle in a Linked Lists

I was asked for a solution to this question on quora in the C programming section, and since i put a detailed answer there, i figured i would post my solutions here as well to reach a broader audience.

Where we left off...

When we last left off we had the basics of our game engine in and character classes in place. In this section we will be covering basic Procedural Dungeon Generation.

Grids & Graphs

Grids are a special cases of Graphs called Lattice Graphs, and they show up and time and time again, particularly in Game Development. Certain categories of games, such as Rogue like games are heavily grid based.