Jonathan Landrum 4aa2b240c9 Add Codecov shield to README.md | il y a 7 ans | |
---|---|---|
src | il y a 7 ans | |
.gitignore | il y a 7 ans | |
.travis.yml | il y a 7 ans | |
COPYING | il y a 7 ans | |
LICENSE | il y a 7 ans | |
README.md | il y a 7 ans | |
pom.xml | il y a 7 ans |
com.jonlandrum.collections
This is a library of data structures, beginning with binary search trees and adjustable trees. New collections are constantly being added.
This library can be included using Maven or by downloading the JAR manually. The project files are stored in the Maven Central Repository, so adding the library to your project is as simple as adding the dependency to your pom.xml
:
<dependency>
<groupId>com.jonlandrum</groupId>
<artifactId>collections</artifactId>
<version>1.0</version>
</dependency>
If you prefer to download the JAR manually, links to the JAR files are at the Maven Central Repository. After you have included the library, you simply need an import
statement to start using the data structures:
import com.jonlandrum.collections.*;
At present, all of the data structures included in this library are types of Binary Search Trees:
com.jonlandrum.collections.BinarySearchTree
com.jonlandrum.collections.BinarySearchTree.AVLTree
com.jonlandrum.collections.BinarySearchTree.SplayTree
Collections will be added to the library on a continuous basis.
This library is Copyright © 2017, Jonathan E. Landrum.
This library is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
A copy of the GNU Affero General Public License is included with this library in the file named LICENSE.
In addition to the above licensing, a further restriction that redistribution must include attribution to the original author is employed.
The documentation contained in this library is Copyright © 2017, Jonathan E. Landrum.
The documentation contained in this library is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. This means that you are free to:
for any purpose, even commercially.
The licensor cannot revoke these freedoms as long as you follow these terms:
Attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
ShareAlike – If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
There are no additional restrictions. You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
Notices:
A copy of the Creative Commons Attribution-ShareAlike 4.0 International License is included with this library in the file named COPYING.