Jyotiprakash Mishrablog.jyotiprakash.org·Sep 25, 2024Introduction to TreesIn computer science, trees are a fundamental non-linear data structure composed of nodes connected by edges. A tree is a hierarchical model that represents a collection of elements, each of which can have a number of children but only one parent (exc...2.7K readsTrees
Fatima Jannetmahia.hashnode.dev·Aug 17, 2024How AVL Trees Work: An In-Depth TutorialWhat is AVL tree? An AVL tree is a self-balancing binary search tree (BST) where the difference between heights of left and right subtree cannot be more that one for all nodes. AVL tree is also a type of binary tree. Hence, all properties of binary t...1 likePython Data Structure and Algorithm - DSAAVL