Go to file
David Leal e5dad3fa8d
feat: use directory workflow from the `scripts` repository (#1278)
* feat: use directory workflow from the...

...`scripts` repository.

* fix: `on` event

* chore: run directory workflow daily
2023-09-27 12:35:39 -06:00
.github feat: use directory workflow from the `scripts` repository (#1278) 2023-09-27 12:35:39 -06:00
.vscode fix newline character 2020-06-23 18:30:26 -04:00
audio feat: add G.711 a-law algorithm (#858) 2021-10-03 23:46:43 +05:30
cipher feat: added Affine Cipher (#1245) 2023-04-13 15:33:42 -06:00
client_server feat: add Windows CI back (#1290) 2023-09-08 15:38:14 -06:00
conversions [feat/docs]: improve the binary to decimal algorithm (#1263) 2023-05-30 10:30:13 -06:00
data_structures fix: change list length in `data_structures/list/list.c` (#1265) 2023-06-20 15:07:09 -06:00
developer_tools feat: add Windows CI back (#1290) 2023-09-08 15:38:14 -06:00
dynamic_programming feat: add Windows CI back (#1290) 2023-09-08 15:38:14 -06:00
exercism chore: fix various spelling typos (#945) 2022-09-27 10:58:15 -05:00
games feat: added hangman game #967 (#1248) 2023-04-30 09:47:09 -06:00
geometry tests: added `get_angle` test function in geometry/vector3d (#838) 2021-07-09 13:52:29 -05:00
graphics feat: add Windows CI back (#1290) 2023-09-08 15:38:14 -06:00
greedy_approach chore: fix typo in filename (#947) 2022-06-07 13:09:33 -05:00
hash docs: fixed some documentation errors in BLAKE2b (#1234) 2023-04-07 13:35:40 -06:00
leetcode feat: add LeetCode problem 69 (#1259) 2023-06-27 13:49:43 -06:00
machine_learning chore: fix various spelling typos (#945) 2022-09-27 10:58:15 -05:00
math [feat/docs]: improve the Fibonacci algorithm (#1232) 2023-04-20 13:59:14 -06:00
misc feat: Add McNaughton–Yamada–Thompson algorithm (#1241) 2023-04-11 18:57:27 -06:00
numerical_methods feat: add Secant Method (#1255) 2023-06-02 10:43:21 -06:00
process_scheduling_algorithms feat: add `process_scheduling_algorithms` to CMake (#1193) 2022-12-28 14:35:41 -06:00
project_euler fix: Revert "fix: LGTM warnings/alerts" commit 2021-04-25 19:44:15 -05:00
scripts chore: add the linter to a separate Python script (#1272) 2023-07-18 21:00:14 -06:00
searching feat: add Windows CI back (#1290) 2023-09-08 15:38:14 -06:00
sorting fix: Segmentation fault in `merge_sort.c` (#1243) 2023-04-08 19:58:03 -06:00
.clang-format [bug fix] fix code formatting during CI (#597) 2020-08-26 12:11:51 -04:00
.clang-tidy [enhancement] formatted and added `Hash` directory to cmake (#580) 2020-07-29 13:18:11 -04:00
.gitignore chore: add the linter to a separate Python script (#1272) 2023-07-18 21:00:14 -06:00
.gitpod.dockerfile [enhancement] New Graphics implementation with algorithm for spirograph (#557) 2020-07-10 15:48:07 -04:00
.gitpod.yml Update .gitpod.yml 2021-11-21 14:16:01 -06:00
CMakeLists.txt feat: add Windows CI back (#1290) 2023-09-08 15:38:14 -06:00
CODE_OF_CONDUCT.md fix: Update the CoC to match the `.github` repository (#913) 2021-10-31 21:26:18 -06:00
CONTRIBUTING.md docs: add self-test examples (#1250) 2023-04-27 10:38:05 -06:00
CodingGuidelines.md added code style conventions 2018-03-23 21:47:38 +01:00
DIRECTORY.md feat: add Windows CI back (#1290) 2023-09-08 15:38:14 -06:00
Doxyfile added doxygen documentation 2020-05-24 22:28:28 -04:00
LICENSE Update copyright notice to 2023 2023-03-31 18:30:43 +00:00
README.md docs: update workflow versions in `README.md` (#1273) 2023-07-18 20:39:51 -06:00
REVIEWER_CODE.md feat: guidelines for reviewers (#671) 2020-10-18 22:02:04 -05:00

README.md

The Algorithms - C

Gitpod Ready-to-Code CodeQL CI Gitter chat contributions welcome GitHub repo size Doxygen CI Awesome CI Income Discord chat Donate

Overview

The repository is a collection of open-source implementations of a variety of algorithms implemented in C and licensed under GPLv3 License. The algorithms span a variety of topics from computer science, mathematics and statistics, data science, machine learning, engineering, etc.. The implementations and their associated documentations are meant to provide a learning resource for educators and students. Hence, one may find more than one implementation for the same objective but using different algorithm strategies and optimizations.

Features

  • The repository provides implementations of various algorithms in one of the most fundamental general purpose languages - C.
  • Well documented source code with detailed explanations provide a valuable resource for educators and students alike.
  • Each source code is atomic using standard C library libc and no external libraries are required for their compilation and execution. Thus the fundamentals of the algorithms can be studied in much depth.
  • Source codes are compiled and tested for every commit on the latest versions of two major operating systems viz., MacOS and Ubuntu (Linux) using AppleClang 14.0.0 and GNU 11.3.0 respectively.
  • Strict adherence to C11 standard ensures portability of code to embedded systems as well like ESP32, ARM Cortex, etc. with little to no changes.
  • Self-checks within programs ensure correct implementations with confidence.
  • Modular implementations and OpenSource licensing enable the functions to be utilized conveniently in other applications.

Documentation

Online Documentation is generated from the repository source codes directly. The documentation contains all resources including source code snippets, details on execution of the programs, diagrammatic representation of program flow, and links to external resources where necessary. Click on Files menu to see the list of all the files documented with the code.

Documentation of Algorithms in C by The Algorithms Contributors is licensed under CC BY-SA 4.0
Creative Commons LicenseCredit must be given to the creatorAdaptations must be shared under the same terms

Contributions

As a community developed and maintained repository, we welcome new un-plagiarized quality contributions. Please read our Contribution Guidelines.