An open API service indexing awesome lists of open source software.

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

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