/java-lib

The All Algorithms Java Library

Primary LanguageJavaMIT LicenseMIT





The All ▲lgorithms Java library

Javadocs



java.allalgorithms.com

Why?

  • Why not 😂??
  • Clean and focused.
  • Actively maintained.
  • Because All Algorithms should be easy to use in Java.

Read the detailed documentation at java.allalgorithms.com. See the All ▲lgorithms Tree.

Want to contribute? GET STARTED HERE

Dependency Information

Download the latest version JAR to include it in your project

Maven

<dependency>
        <groupId>com.abranhe.allalgorithms</groupId>
        <artifactId>allalgorithms</artifactId>
        <version>0.0.1</version>
</dependency>

Gradle

compile 'com.abranhe:bigdecimal:0 .0.1'

Import

import com.abranhe.allalgorithms.*;

Usage

import com.abranhe.allalgorithms.searches.*;

public static void main(String[] args) {
    int[] arr = {7, 2, 1, 19};
    
    MergeSort.sort(arr);
    // {1, 2, 7, 19}
}

Tree

Related

Maintainers

Carlos Abraham Logo
Carlos Abraham

License

MIT License © Carlos Abraham