Skip to content

Latest commit

 

History

History
69 lines (56 loc) · 1.53 KB

README.md

File metadata and controls

69 lines (56 loc) · 1.53 KB

Ordenación visual de un array en Java

Disponibles hasta 30 algoritmos de ordenación y 8 variantes para el diseño gráfico.

Descargar y generar ejecutable

git clone https://github.com/javiluli/array-sort-visualizer.git
cd array-sort-visualizer
mkdir target
javac src/Principal/MainAplicacion.java -sourcepath src -d target/
jar -cvfm program.jar manifest.mf -C target/ ./

Disponibles 30 algoritmos de ordenacion

  • Bidirectional Bubble
  • Binary insertion sort
  • Bitonic sort
  • Bogo sort
  • Bubble sort
  • Optimized bubble sort
  • Bucket sort
  • Cocktail sort
  • Cycle sort
  • DoubleSelection
  • Gnome sort
  • Gravity sort
  • Heap sort
  • Insertion sort
  • Intro sort
  • Iterative Merge sort
  • Iterative Quick sort
  • Merge sort
  • Odd Even sort
  • Pancake sort
  • Pigeonhole sort
  • Quick sort
  • Radix sort
  • Recursive Bubble sort
  • Recursive Insertion sort
  • Recursive Selection sort
  • Selection sort
  • Shell sort
  • Stooge sort
  • Tim sort

Disponibles 8 diseños gráficos distintos

  • Barras clásicas
  • Pirámide horizontal
  • Pirámide vertical
  • Pantalla completa
  • Pixel
  • Círculo con barras
  • Circunferencia
  • Espiral con barras

Bubble optimized Sort

bubble_optimized.gif

Merge Sort

merge.gif

Radix LSD Sort

radix_lsd.gif