Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 906 Bytes

File metadata and controls

30 lines (25 loc) · 906 Bytes

Summary

A java application that visualizes the big o notations of the most used sorting algorithms. The interface is made using Java Swing. All sorting algorithms were written from scratch.

Sorting Algortihms

  • Bubble Sort
  • Heap Sort
  • Insertion Sort
  • Merge Sort
  • Quick Sort
  • Selection Sort

How to Use

  1. Clone this repository to your local machine.
  2. Open a terminal and navigate to the project directory.
  3. On the project directory type:
mvn clean package
  1. After that type:
java -jar target/SortingAlgorithms-1.0-SNAPSHOT.jar
  1. Enjoy!

Application Images

1

2

3