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

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.

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