Author : Swapnil Gaikwad
Java Collections are extremely common in Java projects. It is a great tool for storing and retrieving data efficiently for application. This project is similar implementation of Java Collection just to understand how data structures can be implemented in Java. This project help understand how Java collections work under the hood. This project also provide data structures like Trie. This classes has similar API's to Java Collections.
To get a Git project into your build
Step 1. Maven users should add the JitPack repository to your pom.xml
file
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Step 2. Add the dependency
<dependency>
<groupId>com.github.SwapnilBGaikwad</groupId>
<artifactId>Collection</artifactId>
<version>0.0.2</version>
</dependency>
Step 1. Gradle users should add the JitPack repository to your build.gradle
file
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
compile 'com.github.SwapnilBGaikwad:Collection:0.0.2'
}
* Linked List
* Heap
* Trie
* Queue
If have any doubts or found bug create issue on github repo.
- Write an issue. You can contribute by creating pull request.
- Create a pull request. (See Understanding the GitHub Flow