Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 691 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 691 Bytes

algocol v0.3.0

By Renoir Tan


algocol is a collection of helpful algorithms, including sorting algorithms, graph-traversal algorithms and so on. These algorithms have been designed to be generic over different types, so that you can throw in any type which implements the correct traits and use the functions defined here.

Available Algorithms

Searching

  1. Binary Search

Sorting

  1. Bubble Sort
  2. Selection Sort
  3. Insertion Sort
  4. Merge Sort (including its affiliated merge function)
  5. Tim Sort
  6. Quick Sort (including its affiliated partition function)