Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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