Computer Science, asked by mrnikhilkumar13, 3 months ago

Evaluate the postfix expression 623+482+*5++ using stack in tabular format
With an example each show the types of rotations in AVL tree.​

Answers

Answered by madhuribabbar3
0

Answer:

AVL Tree | Set 1 (Insertion)

AVL tree is a self-balancing Binary Search Tree (BST) where the difference between heights of left and right subtrees cannot be more than one for all nodes.

An Example Tree that is an AVL Tree

Explanation:

Most of the BST operations (e.g., search, max, min, insert, delete.. etc) take O(h) time where h is the height of the BST. The cost of these operations may become O(n) for a skewed Binary tree. If we make sure that height of the tree remains O(Logn) after every insertion and deletion, then we can guarantee an upper bound of O(Logn) for all these operations. The height of an AVL tree is always O(Logn) where n is the number of nodes in the tree

Similar questions