 |
Labyrinth generator. Able to generate labyrinths of a given size, display it and export to a file, also there's included algorithm which can find start-exit path in labyrinth using vectors:

Subsets generator, it can create all subsets of a given set (works very fast), eg. {1, 2, 3} = {1, 2, 3}, {2, 3}, {3}, {}, {2}, {1, 3}, {1}, {1, 2}.
Geometry fractal generator, can create images, flowers, trees using simple recursive formulas, example:

Reverse Polish Notation (RPN) algorithm, it can solve expression like "(2+3)*(5+6)+7+sin(3)" w/o help of recursion and works extremely fast:

Swappings generator, can generate all swappings of a given set, eg: {1, 2, 3} = {1, 2, 3}, {1, 3, 2}, {2, 1, 3}, {2, 3, 1}, {3, 2, 1}, {3, 1, 2}
Self playing tetris, able to score more then 15.000 lines on a 16x28 field

All items contain sources (Delphi) and a compiled exe file.
Labyrinth generator
Subsets generator
Geometry fractal generator
RPN
Swappings generator
Self playing tetris
|
 |