/algorithm

Practicing algorithm like sorting and data structure using spring-boot.

Primary LanguageJava

Algorithm - Sorting

This is a project for self-review of algorithm(Sorting) and using Spring DataDog for a try.

Sorting Way

Sort Method Best Case Worst Case Average
Bubble Sort O(n^2) O(n^2)
Insertion Sort O(n) O(n^2)
  1. Bubble Sort
  2. Insertion Sort
  3. Selection Sort
  4. Quick Sort
  5. Merge Sort
  6. Heap Sort