avl-tree-implementations
There are 129 repositories under avl-tree-implementations topic.
ivanmmarkovic/Problem-Solving-with-Algorithms-and-Data-Structures-using-Python
Code from Problem Solving with Algorithms and Data Structures using Python
Ekan5h/AVLtree
C++ implementation of an AVL tree template.
dmcmanam/bbst-showdown
Fast AVL Trees & WAVL Trees in Java
llefranc/42_ft_containers
School project: reimplement the STL containers (using allocator, double linked list and AVL binary trees).
pavel-kirienko/cavl
Generic single-file implementations of AVL tree in C and C++ suitable for deeply embedded systems. There is little activity because the project is finished.
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.
ali-asnaashari/Patient-Management-System
DataStructure Course Project, 2021/1400, Spring CSE & IT Dept., Shiraz University
Dare-marvel/Data-Structures-and-Competitive-Programming--DS-CP----
Your one-stop GitHub repo for competitive coding and data structures! 🤖 Curated notes, practice problems, and real-world applications. Sharpen your skills and ace those interviews! 💻🔥
gampu/Order-statistic-AVL-tree
A header-only order-statistic AVL tree
Johnsuuuu/data-structures-and-algorithms
data structures and algorithms implemented in Python
MaroIsLife/CPP-containers-reimplementation
A full reimplementation of the C++ famous STL containers (Vector, Map and Stack)
neeru1207/DS-and-Algos-Python3
My implementations of Basic to Advanced data structures and Algorithms in python
VileEnd/avlTreeExam
Simple AVL Tree with WebPage which shows deepth- Nodes with a visual interface
aditya43/data-structures-algorithms
:hotsprings: Data structures, algorithms and problem solving patterns using JavaScript.
AlexandreBrown/BinarySearchTreeADT
Efficient Implementation of Binary Search Tree & AVL Binary Tree
Annas-Furquan-Pasha/AVL-Tree
AVL tree implementation
anupam-io/avl_tree
AVL tree: height-balanced trees in C supporting add, remove, search, update features. A comparison of AVL trees with red-black trees is also done(std::set).
budiong054/binary_trees
Implementation of Binary Tree, Binary Search Tree, AVL Tree and Max Binary Heap data structure in C
Mkhubaiib/Data-Structures
Basic Data Structures
SadkiratSingh/DataStructures
This repository contains practical implementation of various basic data structures in C Language. It also includes implementation of various advanced and complex data structures like AVL Trees, Red Black Trees, Huffman Coding, Binary Search Trees, Hash Tables, etc. This repository also includes various sorting algorithms like QuickSort, MergeSort, InsertionSort, etc.
AbdulAHAD968/Stock-Management-System
This project is an Inventory Management System built in C++ that uses AVL Trees to maintain a balanced Binary Search Tree (BST) structure. By using AVL Trees, the system ensures efficient addition, deletion, and search operations, keeping inventory management quick and organized.
alexisf3142/AVL_Tree
A C++ project implementing template class AVL Tree, and traversing it in different orders such as pre-order, in-order, post-order, and level-order.
Amrita143/-ORGANIZATIONAL-HIERARCHY-Of-a-Company
Java implementation of multi-child-organizational structure using AVL tree for O(logN) performance and created a web-interface of this hierarchical structure using HTML,CSS and JavaScript for visualization of the necessary functions.
DSA-2-labs/AVL_RedBlack_Trees
Implementation of AVL & Red-Black trees. Implementation of a simple English Dictionary as an application of the 2 self-balanced BSTs. A command line interface enables us to deal with the dictionary and apply all its implemented operations.
FareedCodess/spell-checker
The goal of this project was to develop a dictionary which is to be used in a spell checker. The spell checker will help users identify and correct misspelled words by comparing input words against the dictionary.
lucasvianav/data-structure-adts
Repository for the "SCC0223 - Data Structures" course offered for applied mathematics undergraduates at ICMC - USP, by professor Elaine Parros.
Mahgabin18/AVL-tree
AVL tree is a self-balancing Binary Search Tree where the difference between heights of left and right subtrees cannot be more than one for all nodes.
mashal02/C_Cpp
This repo covers almost all programming concepts implementations in C / C++
spectrewall/avl-tree
An implementation of AVL Tree in C.
ThalesDaviSouza/Arvore-Avl
A C Avl Tree library
tyharg/avl-tree
C++ AVL tree implementation
Vishal-Prakash-1/Gator_Glide_Delivery_System
An efficient order and delivery management system for GatorGlide Delivery Co., leveraging advanced AVL tree data structures to optimize delivery routes and schedules, developed in Python.