C++ 算法大全
Go to file
Krishna Vedala 00e49027ef
Merge branch 'document/math'
* document/math:
  document square-root that uses bisection method
  math readme title
  documentation and bug fixes
  fix cpplint
  docs for large number power
  documetnation for positive divisors
  documentation for Little Fermat's Thm
  updating DIRECTORY.md
  document fibonacci program
  better document GCD programs
  improve documentation for fast_power
  use template based functions
  documentation for extended euclid
  fix code for generic types
  documentation for eulers_totient_function.cpp
  documentation update for double_factorial
  fix documentation for double_factorial
  bug fix - no function return and invalid for loop termination check
  documentation for double_factorial
  documetnation for binary_exponent.cpp
2020-05-27 17:37:43 -04:00
.github remove redundant github action 2020-05-26 13:07:30 -04:00
.vscode set 1 space for private and public keywords in cpp-classes 2020-05-27 08:08:31 -04:00
backtracking update 2020-04-29 22:52:44 +05:30
computer_oriented_statistical_methods fixed windows build error 2020-05-26 09:32:37 -04:00
data_structure wrapped all the functions inside a class 2020-05-22 09:23:02 +05:30
dynamic_programming Merge pull request #723 from faizanahamed1414/patch-1 2020-04-22 20:53:09 +08:00
graph feat : find maximum flow in a graph (#791) 2020-05-25 20:47:55 +05:30
greedy_algorithms Greedy Algorithms -> greedy_algorithms (#647) 2019-11-28 13:29:38 +01:00
hashing feat: Implemented open addressing hash tables (#673) 2019-12-21 09:17:08 +01:00
math document square-root that uses bisection method 2020-05-27 16:58:30 -04:00
operations_on_datastructures feat: added a function to get the size of a linked list (#763) 2020-05-19 06:59:38 +02:00
others Merge branch 'large_factorial' 2020-05-27 17:36:30 -04:00
probability Merge pull request #735 from RobotRage/bayes-theorem 2020-05-22 23:45:23 +05:30
range_queries Don't use bits/stdc++.h 2020-04-18 10:43:43 +08:00
search include search folder in cmake 2020-05-26 16:40:09 -04:00
sorting remove mainpage doxygen tag 2020-05-26 13:28:12 -04:00
strings add cmake to strings folder 2020-05-26 11:00:00 -04:00
.gitignore newline character at EOF of gitignore 2020-05-26 08:48:09 -04:00
CMakeLists.txt include search folder in cmake 2020-05-26 16:40:09 -04:00
CONTRIBUTION.md Update CONTRIBUTION.md 2020-05-24 08:52:09 +02:00
DIRECTORY.md Merge branch 'document/math' 2020-05-27 17:37:43 -04:00
LICENSE Update the copyright year 2020-04-12 21:16:18 +08:00
README.md add mainpage tag to README in the root folder 2020-05-26 13:28:33 -04:00

The Algorithms - C++

contributions welcome  GitHub repo size GitHub closed pull requests Doxygen CI cpplint C/C++ CI

Documentation

All algorithms implemented in C++ (for education)

The implementations are for learning purpose. They may be less efficient than the implementation in the standard library.

Contribute Guidelines

Read our Contribution Guidelines before you contribute.