https://github.com/praabindhp/avl_tree
C Program For AVL Tree
https://github.com/praabindhp/avl_tree
avl-tree c data-structures programming
Last synced: 3 months ago
JSON representation
C Program For AVL Tree
- Host: GitHub
- URL: https://github.com/praabindhp/avl_tree
- Owner: praabindhp
- Created: 2021-01-28T10:14:15.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-16T05:41:32.000Z (over 4 years ago)
- Last Synced: 2025-06-06T15:05:39.251Z (7 months ago)
- Topics: avl-tree, c, data-structures, programming
- Language: C
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AVL_Tree
C Program For AVL Tree
C is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, with a static type system. By design, C provides constructs that map efficiently to typical machine instructions.
AVL tree is a self-balancing binary search tree. It was the first such data structure to be invented. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than one, rebalancing is done to restore this property.
This is a C Program for Implementation of Adelson-Velskii & Landis Trees
The Options :
1. Insertion
2. Inorder Display
3. Exit
The Functions :
1. Inserting Into The AVL Tree
2. Displays The Elements In Order Of Entry
3. Termintaes The Program