Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/manoelpiovesan/paa

Trabalho da disciplina de Projeto e Análise de Algoritmos da UERJ em 2024.1 - Algoritmos de Ordenação
https://github.com/manoelpiovesan/paa

java sorting-algorithms swing

Last synced: 2 days ago
JSON representation

Trabalho da disciplina de Projeto e Análise de Algoritmos da UERJ em 2024.1 - Algoritmos de Ordenação

Awesome Lists containing this project

README

        

## Como iniciar
Clone o repositório
```bash
git clone https://github.com/manoelpiovesan/paa.git
```
Entre na pasta do projeto
```bash
cd paa
```
Compile o projeto
```bash
./gradlew build
```
Execute o projeto
```bash
java -jar build/libs/paa2-1.jar
```

## Algoritmos implementados
- [x] Bitonic Sort
- [x] Merge Sort
- [x] Bubble Sort
- [x] Insertion Sort
- [x] Shell Sort
- [x] Heap Sort
- [x] Radix Sort (LSD)
- [x] Radix Sort (MSD)
- [x] Cocktail Sort
- [x] Comb Sort
- [x] Gnome Sort
- [x] Odd-Even Sort
- [x] Tim Sort
- [x] Binary Insertion Sort
- [x] Selection Sort