Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 540 Bytes

File metadata and controls

39 lines (24 loc) · 540 Bytes

AlgorithmsInJava

A collection of algorithms written in Java

Math algorithms will be added to Math.java Sorting algorithms will be added to Sort.java Search algorithms will be added to Search.java

Implemented

Algorithms that are already implemented.

Math

  • fastInverseSqrt

Sort

  • bubbleSort
  • insertionSort
  • mergeSort
  • selectionSort
  • bogoSort (Yes really)

Search

  • binarySearch
  • recursiveBinarySearch
  • linearSearch

Planned

Algorithms that I've planned to implement in the future.

Math

Sort

Search