Go to file
straight-into-the-wall 37534f4d8c
feat: leetcode zigzag solution (#897)
* perf: faster implementation of the TwoSum problem

* doc: fixed typos on comments

* updating DIRECTORY.md

* feat: leetcode ZigZag conversion solution

* doc: leetcode README added ZigZag conversion solution

* fix: clang-tidy linter corrections

* doc: fixed typo on leetcode README

* Update leetcode/src/6.c

@file does not want parameters

Co-authored-by: David Leal <halfpacho@gmail.com>

* Update leetcode/src/6.c

Co-authored-by: David Leal <halfpacho@gmail.com>

* fix: unsigned int and include comments

* fix: comments on includes. Doxygen file. static test function

* fix: add missing headers

* Delete 1.c

* Revert "Merge branch 'master' into leetcode/zigzag"

This reverts commit b46a6afd52.

* fix: revert 1.c

* updating DIRECTORY.md

* Empty commit to test the CI

* Update leetcode/src/6.c

Co-authored-by: David Leal <halfpacho@gmail.com>

* Update leetcode/src/6.c

Co-authored-by: David Leal <halfpacho@gmail.com>

* fix: missing main

* updating DIRECTORY.md

* doc: added missing comment

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
2021-12-09 11:51:02 -06:00
.github feat: Add contact links in the issue template configuration 2021-11-11 17:54:41 -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
client_server TCP Full Duplex Server Client Communication (#856) 2021-09-22 11:47:40 -05:00
conversions feat: add infix to postfix converter algorithm (#869) 2021-10-16 19:27:11 -05:00
data_structures feat: Moving queue file to it's directory and creating include file for it (#874) 2021-10-15 11:28:04 -05:00
developer_tools feat: printf statement written in c (as minprintf) without using stdio.h li… (#820) 2021-04-03 12:03:22 +05:30
exercism formatting source-code for 5bba04b671 2020-06-28 15:25:37 +00:00
games docs: remove redundant space before comma (#920) 2021-12-01 11:43:09 -06:00
geometry tests: added get_angle test function in geometry/vector3d (#838) 2021-07-09 13:52:29 -05:00
graphics [enhancement] New Graphics implementation with algorithm for spirograph (#557) 2020-07-10 15:48:07 -04:00
greedy_approach feat: Prims algorithm (#815) 2021-03-31 14:06:12 +05:30
hash test: removed commented code (#885) 2021-10-15 11:01:56 -05:00
leetcode feat: leetcode zigzag solution (#897) 2021-12-09 11:51:02 -06:00
machine_learning feat: Add endlines in machine_learning/adaline_learning.c (#846) 2021-08-18 15:35:00 -05:00
misc feat: add postfix evaluation algorithm (#890) 2021-10-25 23:10:53 +05:30
numerical_methods fix: possible segmentation faults in numerical_methods/mean.c (#805) 2021-02-23 12:36:43 -06:00
project_euler fix: Revert "fix: LGTM warnings/alerts" commit 2021-04-25 19:44:15 -05:00
searching Sentinel search: Remove bounds check (fixes #887) (#888) 2021-10-16 19:28:37 -05:00
sorting fix: merge sort bug (#921) 2021-12-02 12:55:40 -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 ignore files in .vscode unless specifically added 2020-06-28 07:10:42 -04: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 G.711 a-law algorithm (#858) 2021-10-03 23:46:43 +05:30
CODE_OF_CONDUCT.md fix: Update the CoC to match the .github repository (#913) 2021-10-31 21:26:18 -06:00
CodingGuidelines.md added code style conventions 2018-03-23 21:47:38 +01:00
CONTRIBUTING.md [feat/fix]: Improve the contributing guidelines (#839) 2021-07-07 14:41:56 -05:00
DIRECTORY.md feat: leetcode zigzag solution (#897) 2021-12-09 11:51:02 -06:00
Doxyfile added doxygen documentation 2020-05-24 22:28:28 -04:00
LICENSE fix: Update the copyright year to 2021 (#780) 2021-01-07 22:36:22 -06:00
README.md fix: Discord logo's color 2021-12-06 14:52:24 -06:00
REVIEWER_CODE.md feat: guidelines for reviewers (#671) 2020-10-18 22:02:04 -05:00

The Algorithms - C

Gitpod Ready-to-Code Language grade: C/C++ 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 three major operating systems viz., Windows, MacOS and Ubuntu (Linux) using MSVC 16 2019, AppleClang 11.0 and GNU 7.5.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.