Collection ReImplemented

Build status:

Build Status

codecov

Release

Downloads

Data structures library in Java

Author : Swapnil Gaikwad

Background

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.

How to use Collection in your Project

In pom.xml

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>

In build.gradle

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'
}

Currently supported Data structures

* Linked List
* Heap
* Trie
* Queue

Contributing

If have any doubts or found bug create issue on github repo.