Skip to content

DahlitzFlorian/java-sorting-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

javac -d bin/ src/<filename>.java

or

javac -d bin/ src/*.java

After you've compiled the files, you can go to the bin directory and run them via

java <filename>

Make sure to leave out the file extension.

Currently implemented Algorithms

  • Bubble Sort
  • Merge Sort