No Description

Jonathan Landrum 4aa2b240c9 Add Codecov shield to README.md 7 years ago
src b67ca80bf1 Change Travis-CI line to reference cobertura 7 years ago
.gitignore eb3422fb7d Add support for Codecov 7 years ago
.travis.yml 4aa2b240c9 Add Codecov shield to README.md 7 years ago
COPYING 8e092570e7 Create COPYING 7 years ago
LICENSE 0885dd5b8e Update LICENSE 7 years ago
README.md 4aa2b240c9 Add Codecov shield to README.md 7 years ago
pom.xml eb3422fb7d Add support for Codecov 7 years ago

README.md

com.jonlandrum.collections

Travis Codecov Maven Central

This is a library of data structures, beginning with binary search trees and adjustable trees. New collections are constantly being added.

Usage

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.*;

Current Data Structures

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.

License and Copyright

GNU LGPLv3 License

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.

Creative Commons License

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:

  • Share – copy and redistribute the material in any medium or format
  • Adapt – remix, transform, and build upon the material

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:

  • You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation
  • No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material

A copy of the Creative Commons Attribution-ShareAlike 4.0 International License is included with this library in the file named COPYING.