avl-tree-implementations
There are 149 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 in C++98 (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.
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.
zinchse/py-avl-tree-visualizer
AVL Tree implementation with pretty print and built-in search for k-th element
melohub-xbit/HFT-Simulator-DigitalDynamos
This project aims to simulate how an HFT (High-Frequency Trading) firm executes its strategies to profit through the stock exchanges. The project also simulates how a stock exchange manages its order book to match and execute orders efficiently using advanced data structures and algorithms to minimize the latency.
VileEnd/avlTreeExam
Simple AVL Tree with WebPage which shows deepth- Nodes with a visual interface
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
neeru1207/DS-and-Algos-Python3
My implementations of Basic to Advanced data structures and Algorithms in python
AbhishekYadav-01/Metro-Navigator
This project implements a Metro Station Management System using advanced data structures in C++. The system efficiently manages metro lines and stations, supports real-time route planning, and calculates optimal ticket fares using pathfinding algorithms.
aditya43/data-structures-algorithms
:hotsprings: Data structures, algorithms and problem solving patterns using JavaScript.
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).
MaroIsLife/CPP-containers-reimplementation
A full reimplementation of the C++ famous STL containers (Vector, Map and Stack)
surajsubramanian/AVL-Trees
Implementation of AVL Trees using Java
AlexandreBrown/BinarySearchTreeADT
Efficient Implementation of Binary Search Tree & AVL Binary Tree
aliakseis/rb_avl_comparison
Comparing RB and AVL tree implementations. We Need To Go Deeper.
Annas-Furquan-Pasha/AVL-Tree
AVL tree implementation
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.
spectrewall/avl-tree
An implementation of AVL Tree in C.
aoum-m/tree-visualization
This project is a C++ implementation for visualizing Binary Search Trees (BST), AVL Trees, and Heap Trees using the graphics.h library. It provides a graphical representation of tree structures, helping users understand their formation, balancing mechanisms, and operations more intuitively.
ayesha-enayat/DSA
This repository contains implementations of data structures in C++.
Bilodev/AVL-Tree
AVL (self-balancing binary) trees implemented using Pygame
petrambroz/AVL-Trees
A library providing generic AVL tree data structure with necessary operations. Programming 2 semester project at Charles University.
valecanosoto/hotel-booking-system-avl-trees
Java-based hotel booking system for managing users, rooms, and reservations across multiple branches. Uses custom AVL trees for efficient data organization and access. Built to practice core data structure concepts without external libraries.