Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 310 Bytes

File metadata and controls

18 lines (13 loc) · 310 Bytes

Sorting Algorithms in Java

This project implements basic sorting algorithms in Java.

Algorithms

  • Bubble Sort (optimized)
  • Selection Sort

Tech Stack

  • Java

How to Run

javac SortingAlgorithms.java
java SortingAlgorithms

What I Learned

  • Time complexity (O(n^2))
  • Algorithm optimization