What is binary tree and AVL tree | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

What is binary tree and AVL tree

Binary tree explanation

11th Mar 2021, 11:44 AM
Ashish_Gupta
Ashish_Gupta - avatar
3 Respostas
+ 5
Binary Tree is a tree each node has max 2 children. if left child is smaller than right for all nodes it is called Binary Search Tree(BST) AVL is a BST with balance property. Balanced means it looks like a wide and short tree not one with long height. Then we can reach fruits faster without too much climbing
11th Mar 2021, 12:03 PM
deleted
0
https://en.m.wikipedia.org/wiki/Binary_tree https://en.m.wikipedia.org/wiki/AVL_tree
11th Mar 2021, 11:51 AM
visph
visph - avatar