Code Monkey home page Code Monkey logo

bstrees_project's Introduction

Binary search trees library

This library provides the ability to store key-value pairs in trees of three types:

  • Unbalanced binary search tree.
  • AVL-Tree.
  • Red-black tree.

Table of contents

Functionality

You can store values of any types by keys of comparable type. Each tree provides you to:

  • Insert values.
  • Change inserted value by key.
  • Search value by key.
  • Delete value.
  • Iterate through tree.

File structure

src
├──main/kotlin
│  │
│  ├── nodes
│  │   ├── TreeNode.kt  # Node of abstract binary tree and BST class
│  │   ├── UnbalancedBSTNode.kt # Node of Unbalanced BST class
│  │   ├── AvlNode.kt # Node of AVL-tree class
│  │   ├── RBTreeNode.kt # Node of RB tree class
│  │      
│  ├── trees
│  │   ├── UnbalancedBSTree.kt # Unbalanced BST class
│  │   ├── AvlTree.kt # AVL-tree class
│  │   ├── RBTree.kt # RB tree class
│  │   ├── abstractTree
│  │       ├── AbstractTree.kt # Abstract binary tree class
│  │       ├── TreeIterator.kt # Tree iterator class
│
├──test/kotlin
│  │
│  ├── UnbalancedBSTTests.kt # Unit tests of Unbalanced BST
│  ├── AvlTests.kt # Unit tests of AVL-tree
│  ├── RBTreeTests.kt # Unit tests of RB tree
│  │

How to use

See DOCS.md

Technologies used in the library

Our team and responsibility areas

Project status

Released.

Contributing

See CONTRIBUTING.md

License

See LICENSE.md

bstrees_project's People

Contributors

vyacheslaviurevich avatar f1i3g3 avatar elbananium avatar github-classroom[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.