Skip to content
Advertisement

Delete leaf nodes between a range in BST

I want to delete the leaf nodes, the values of which are outside a given range (say [L R]). I made a solution in which I was simply traversing all the nodes and checking if my current leaf node’s value is in the given range or not. If it is not then I’m removing this node.

My approach –

JavaScript

But this runs in o(n) since I’m traversing all the nodes (and I’m not using BST’s property anywhere). Can anyone help me in finding a better/ optimized solution ?

Advertisement

Answer

Like m.raynal said, since you only want to remove leafs you can’t get better than O(n).

You only can add a shortcut when all the nodes in the branch will be inside the range, something like

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement