Delete Nodes And Return Forest
Explore how to solve the problem of deleting specified nodes from a binary tree and returning the resulting collection of disjoint trees or forest. Understand the approach to traverse and split the tree, then implement your own solution to reinforce learning about tree depth-first search techniques.
We'll cover the following...
We'll cover the following...
Statement
Given the root of a binary tree where each node has a unique value, your task is to delete all nodes with values specified in the ...