How divide and conquer technique can be applied to binary trees?
As the binary tree definition itself separates a binary tree into two smaller structures of the similar type, the left subtree and the right subtree, lots of problems about binary trees can be solved by applying the divide-conquer method.