https://github.com/armin2208/numbersort
Simple implementation of three sort algorithms: BubbleSort, SelectionSort and InsertionSort.
https://github.com/armin2208/numbersort
bubble-sort bubblesort insertion-sort insertionsort java10 selection-sort selectionsort sorting-algorithms
Last synced: 6 months ago
JSON representation
Simple implementation of three sort algorithms: BubbleSort, SelectionSort and InsertionSort.
- Host: GitHub
- URL: https://github.com/armin2208/numbersort
- Owner: Armin2208
- License: unlicense
- Created: 2018-05-01T20:26:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-31T15:57:21.000Z (over 7 years ago)
- Last Synced: 2025-02-14T07:48:42.546Z (8 months ago)
- Topics: bubble-sort, bubblesort, insertion-sort, insertionsort, java10, selection-sort, selectionsort, sorting-algorithms
- Language: Java
- Homepage:
- Size: 187 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NumberSort
Simple implementation of three sort algorithms: **BubbleSort, SelectionSort and InsertionSort**.At beginning the program generates 30 random numbers in a array. After that the user can choose one of three sort algorithms, which
will sort the numbers of the array from smallest to largest. The result of every pass shows in a text area.
### things used
Program was made in IntelliJ 2018.1 with Java 10 as a JBoss project.