Skip to content

denoming/algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

156 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Most common algorithms implementation

Content

  • Compression
    • Huffman
    • Lzw
  • Crypto
    • MD5
    • SHA1
    • UUID
  • Geometry
    • GrahamScan
    • IntervalSearchTree
    • KdTree
    • LineCrossFinder
    • RectCrossFinder
  • Graph
    • AcyclicShortestPaths
    • BellmanFordShortestPaths
    • BreadthFirstRoutes
    • DepthFirstRoutes
    • ComponentSpreader
    • DepthFirstOrder
    • DijkstraShortestPaths
    • DirectedCycleFinder
    • FlowNetwork
    • FordFulkerson
    • KruskalMinSpanningTree
    • MultiSourceShortestPaths
    • PrimsMinSpanningTree
    • StrongComponentSpreader
    • TopologicalOrderIterator
  • Hash
    • LinearProbingHashTree
    • ChainingHashTree
  • Sort
    • BottomUpMergeSort
    • HeapSort
    • InsertionSort
    • MergeSort
    • QuickSort
    • SelectionSort
    • ShellSort
    • ThreeWayQuickSort
    • Select
  • String
    • LsdRadixSort
    • MsdRadixSort
    • BoyerMooreSubstringSearch
    • KnuthMorrisPrattSubstringSearch
    • LongestCommonPrefix
    • RabinKarpSubstringSearch
    • RegExpMatcher
    • TernarySearchTries
    • ThreeWayRadixSort
  • Tree
    • BinaryTree
    • RedBlackTree
    • BreadthOrderTraverse (with/without recursion)
    • DepthPreOrderTraverse (with/without recursion)
    • DepthInOrderTraverse (with/without recursion)
    • DepthPostOrderTraverse (with/without recursion)
  • UnionFind
    • QuickFind
    • QuickUnion
    • UnionFind

ToDo

  • Least Recently Used Cache
  • Most Recently Used Cache
  • Circular Buffer
  • Probabilistic Data Structures
    • Bloom filter
    • Cuckoo filter
  • HyperLogLog

How-To

Build

$ cmake -S . -B build
$ cmake --build build --parallel

Contact

License

The license is the MIT license.

Materials

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors