balanced-binary-search-trees
There are 27 repositories under balanced-binary-search-trees topic.
dmcmanam/bbst-showdown
Fast AVL Trees & WAVL Trees in Java
KhaledAshrafH/AVL-Tree
This is a C++ implementation of an AVL tree, which is a self-balancing binary search tree. An AVL tree maintains the balance factor of each node, which is the difference between the heights of its left and right subtrees. Whenever a node becomes unbalanced (its balance factor is either -2 or 2), the tree performs a rotation to restore the balance.
KhaledAshrafH/Smart-Social-Networking
Social Networking is a smart social networking system that aims to compete with Facebook. It allows users to create profiles, add friends, search for other users, and get recommendations for new friends.
MeghnaS21/LeetCode
Leetcode solutions in C++ for coding interviews.
w8r/rb-tree
Red-Black tree (WIP)
davecom/SwiftRedBlackTree
A Red-Black Tree Implemented in Swift
Loudhabs/Wordle-in-Cpp
Text-based version of the word game "Wordle", developed in C++ and using Object Oriented Programming and the BST Data structure.
wowczarek/rbt
Yet another red-black tree implementation
zarif98sjs/Balanced-Binary-Search-Trees
Implementation of some popular Balanced Binary Search Trees (AVL, RBT, Splay, Treap) and Performance Comparison
aliakseis/rb_avl_comparison
Comparing RB and AVL tree implementations. We Need To Go Deeper.
binary-search-tree/red-black-tree
:christmas_tree: Red-black tree library for JavaScript
Jaizzer/balanced-binary-search-tree
JavaScript implementation of a balanced binary search tree
jkeys-ecg-nmsu/basic-java-data-structures
A wide range of (basic) data structures, implemented in simple, readable Java.
thejerrytan/python-data-structures
data structures implemented in python
ARaza-13/binary-search-tree-practice
Balanced binary search tree (BST) implementation in JavaScript, which includes functionalities like inserting, deleting, traversing nodes, and ensuring the tree remains balanced
eldor-fozilov/data-structures-for-all-tastes
Here are the results of my attempts to implement popular data structures from scratch.
ezequielsan/Data-Structures
Códigos das aulas de Estrutura de Dados e Estrutura de Dados Avançadas (Universidade)
Haminimi/binary-search-tree
A balanced binary search tree with all the basic methods.
hassifow/student-management-system
Implemented using Linked List and Binary Tree Algorithms
Sahilcreate/top-binary-search-tree
Simple Balanced BST with different traversal method
UtkarshAgrawalDTU/AVL-Class
Implementation of AVL Class
albert-espin/btree-word-finder
Balanced Binary Tree Word Finder
AWilliamson88/StaffList_Ordered
Balanced Binary Search Tree demo application using strings. Can add, delete and search the tree.
bnriiitb/HackerRank
This repository contains the solutions of Hacker Rank Coding Challenges I solved.
Maheshkumar-novice/Binary-Search-Tree
Binary Search Tree Data Structure
make-github-pseudonymous-again/js-avl-tree
:balance_scale: AVL trees for JavaScript
MostafaGalal1/Dictionary
Java dictionary implemented using two types of balanced binary search trees: AVL and Red-Black trees handling basic operations such as searching, insertion, deletion, batch insertion and batch deletion of items with ability to investigate properties of tree structure.