Costa Rica
Last updated: 2020-04-14
This repository is a collection of various algorithms implemented in different programming language. These examples serve as a great starting point for those who want to learn more about coding and its applications.
C
Simulating Space Invaders: This program simulates the classic game of Space Invaders. It demonstrates how to handle user input, game physics, collision detection, and rendering in C.C
Drawing a Flower with Recursive Circles: This program draws a flower with recursive circles. The number of circles is provided via the command line. It's a great example of recursion and graphics programming in C.C
Floodfill: This program identifies if its surroundings are identical and if so, it replaces them in the same way to the starting position by command line.C
Christmas Tree: This program draws a Christmas tree on the console. It's a fun example of how to use loops and string manipulation in C.C
Turtle Moves: This program simulates the movements of a turtle on a 2D grid. It's a great example of how to handle complex data structures and algorithms in C.C
Mouse Labyrinth: This program draws a maze and solves it via command line.C++
Monopoly Games of Thrones: This is a text-based version of the classic Monopoly game with a twist of the Game of Thrones theme. The game supports up to eight players and follows the same rules as the original Monopoly.