Why do we need to balance the binary search tree? Justify with an example. Create an AVL tree from the data 24, 12, 8, 15, 35, 30, 57, 40, 45, 78.
Definition A Binary Search Tree (BST) is a binary tree in which: - The left child of a node contains a value less than the node's value. - The right child of a node contains a value greater than the n