An open API service indexing awesome lists of open source software.

https://github.com/massigy/algos-analytics

This Java based project focuses on three sorting algorithms comparaison.
https://github.com/massigy/algos-analytics

algorithms analytics bubble-sort counting-sort git github java oop programming project quicksort sorting-algorithms

Last synced: 14 days ago
JSON representation

This Java based project focuses on three sorting algorithms comparaison.

Awesome Lists containing this project

README

        

# ALGOS ANALYTICS

### File structure :

```BASH

.
├── doc
│ ├── notes.txt
│ └── report.pdf
├── README.md
└── src
├── ArraySort.java
├── Element.java
└── Main.java

2 directories, 6 files

```

### Usage :

```BASH

# to compile and run

/usr/bin/javac Main.java && /usr/bin/java Main

# to see the csv output using gedit

ls *Output.txt | xargs /usr/bin/gedit &

```