Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdr0alva/algorithms-in-c
Repository to demonstrate different algorithms of famous puzzles on different programming languages
https://github.com/pdr0alva/algorithms-in-c
Last synced: about 1 month ago
JSON representation
Repository to demonstrate different algorithms of famous puzzles on different programming languages
- Host: GitHub
- URL: https://github.com/pdr0alva/algorithms-in-c
- Owner: pdr0alva
- Created: 2024-05-28T17:46:31.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-17T03:44:36.000Z (3 months ago)
- Last Synced: 2024-10-19T04:24:29.106Z (3 months ago)
- Language: C
- Size: 64.5 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
> [!Note]
> 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