C++ 算法大全
Go to file
2019-11-30 22:59:52 +01:00
Backtracking style: format code 2019-08-21 10:10:08 +08:00
Computer Oriented Statistical Methods style: format code 2019-08-21 10:10:08 +08:00
Data Structure Update Linked List.cpp 2019-10-08 14:25:10 +05:30
Dynamic Programming Update Longest Increasing Subsequence (nlogn).cpp 2019-10-08 23:58:49 +08:00
Graph Update lca.cpp 2019-10-09 00:02:49 +08:00
Greedy Algorithms style: format code 2019-08-21 10:10:08 +08:00
Hashing style: format code 2019-08-21 10:10:08 +08:00
Math style: format code 2019-08-21 10:10:08 +08:00
Operations on Datastructures Delete matrix_layer_rotation.cpp 2019-11-29 02:48:37 +01:00
Others Delete PlayfairCipher.cpp 2019-11-29 02:48:14 +01:00
Range queries Update bit.cpp 2019-10-09 00:02:29 +08:00
search Update exponential_search.cpp 2019-11-30 22:59:52 +01:00
Search Search -> search 2019-11-30 21:52:06 +01:00
Sorting Update Bubble Sort.cpp 2019-09-17 21:49:29 +05:30
LICENSE Create LICENSE 2019-10-26 14:36:03 +05:30
README.md Merge branch 'master' into patch-1 2019-02-09 15:58:35 +05:30

C++

This repository contains some useful algorithms and data structures.

Contribute

How you can contribute? See this small guide.

  • Use the directory structure of the repository.
  • Please describe your pull requests.
  • Don't use bits/stdc++.h because this is quite Linux specific and slows down the compiler process.
  • Put comments in your code.
  • Avoid struct. Instead use the class keyword.
  • Add some test cases in the main-function.
  • Can suggest any change in present algorithms(if needed).