https://github.com/dahlitzflorian/java-sorting-algorithms
Small collection of sorting algorithms implemented in Java.
https://github.com/dahlitzflorian/java-sorting-algorithms
algorithms education educational educational-resources java java-8 java8 learn learn-to-code learning learning-by-doing learning-java sort sort-algorithms sorting sorting-algorithms sorting-algorithms-implemented
Last synced: 2 months ago
JSON representation
Small collection of sorting algorithms implemented in Java.
- Host: GitHub
- URL: https://github.com/dahlitzflorian/java-sorting-algorithms
- Owner: DahlitzFlorian
- License: mit
- Created: 2018-07-12T20:15:55.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-14T20:09:02.000Z (almost 7 years ago)
- Last Synced: 2025-01-08T13:27:43.992Z (4 months ago)
- Topics: algorithms, education, educational, educational-resources, java, java-8, java8, learn, learn-to-code, learning, learning-by-doing, learning-java, sort, sort-algorithms, sorting, sorting-algorithms, sorting-algorithms-implemented
- Language: Java
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Java Sorting Algorithms #
## Description ##
This repository includes sorting algorithms implemented in Java.
It was created based on educational purposes and not for productional or commercial usage.version 0.3dev
## Test and Run ##
To compile and run the files on your own, just compile the files via command line. In the root directory of this project create a new folder called ```bin```, open the terminal and type```bash
javac -d bin/ src/.java
```or
```bash
javac -d bin/ src/*.java
```After you've compiled the files, you can go to the ```bin``` directory and run them via
```bash
java
```Make sure to leave out the file extension.
## Currently implemented Algorithms ##
- Bubble Sort
- Merge Sort