Python: Binary Search Tree (BST)- Exercises, Practice, Solution
This resource offers a total of 30 Python Binary Search Tree problems for practice. It includes 6 main exercises, each accompanied by solutions, detailed explanations, and four related problems.
[An Editor is available at the bottom of the page to write and execute the scripts.]
1. Balanced BST Creation
Write a Python program to create a Balanced Binary Search Tree (BST) using an array of elements where array elements are sorted in ascending order.
Click me to see the sample solution
2. Closest Value in BST
Write a Python program to find the closest value to a given target value in a given non-empty Binary Search Tree (BST) of unique values.
Click me to see the sample solution
3. Validate BST
Write a Python program to check whether a given binary tree is a valid binary search tree (BST) or not.
Let a binary search tree (BST) is defined as follows:
The left subtree of a node contains only nodes with keys less than the node's key.
The right subtree of a node contains only nodes with keys greater than the node's key.
Both the left and right subtrees must also be binary search trees.
Example 1: 2 / \ 1 3 Binary tree [2,1,3], return true. Example 2: 1 / \ 2 3 Binary tree [1,2,3], return false.
Click me to see the sample solution
4. Delete Node in BST
Write a Python program to delete a node with the given key in a given binary search tree (BST).
Note: Search for a node to remove. If the node is found, delete the node.
Click me to see the sample solution
5. Array to Height Balanced BST
Write a Python program to convert a given array of elements to a height balanced Binary Search Tree (BST).
Click me to see the sample solution
6. Kth Smallest in BST
Write a Python program to find the kth smallest element in a given binary search tree.
Click me to see the sample solution
Python Code Editor:
More to Come !
Do not submit any solution of the above exercises at here, if you want to contribute go to the appropriate exercise page.