gary258796 / algorithm

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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


Languages

Language:Java 100.0%