Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 12 days 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 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-31T15:57:21.000Z (over 6 years ago)
- Last Synced: 2024-11-04T14:51:16.815Z (about 2 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.![Image](https://github.com/Armin2208/NumberSort/blob/master/screenshot.PNG)
### things used
Program was made in IntelliJ 2018.1 with Java 10 as a JBoss project.