https://github.com/p-alvarenga/algorithms-in-c
Repository to demonstrate different algorithms of famous puzzles on different programming languages
https://github.com/p-alvarenga/algorithms-in-c
c puzzle-solution
Last synced: about 1 year ago
JSON representation
Repository to demonstrate different algorithms of famous puzzles on different programming languages
- Host: GitHub
- URL: https://github.com/p-alvarenga/algorithms-in-c
- Owner: p-alvarenga
- Created: 2024-05-28T17:46:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-23T19:55:22.000Z (over 1 year ago)
- Last Synced: 2025-01-23T20:31:16.027Z (over 1 year ago)
- Topics: c, puzzle-solution
- Language: C
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Algorithms in C
This repository showcases various algorithms for famous problems/puzzles
> [!Important]
> The Algorithms are divided by directories following a very simple structure, as outlined below:
```
Algorithms in C
|
├── Algorithm A
│ ├── algorithm-a.c
│ ├── library.h
│ ├── performance-analysis
│ │ ├── data.txt
│ │ └── graphic.png
│ └── README.md
|
├── Algorithm B
| ├── algorithm-b.c
| ├── library.h
│ └── README.md
.
.
.
└── README.md (this file)
```
Not every program will have performance analysis, due to its simplicity or the program not being scalable (one example of scalable program is N-Queen Solution, since N ∈ [5, ∞[)
As evident from the structure, each algorithm directory will include a dedicated README file. This README will comprehensively outline any performance analysis conducted, provide detailed explanations of the code, and offer instructions on how to execute it effectively