How can we find center of a binary tree? What shall be the most efficient algorithm. Though center of binary tree will be the mid point of the path corresponding to the diameter of tree. We can find the diameter of tree without actually knowing the path, is there any similar technique for finding center of binary tree?
|
|
If you know the diameter : D and you know the max depth of the tree : M then your center will be at the (M-(D/2)) th node(from the root) on the deepest path.(it might be M - (D-1)/2 depending on parity, you need to check yourself) If you have more than on 1 paths from root to leaf with M nodes then the center is the root. (only true when the longest path goes through the root) EDIT: To answer your remark. if it doesn't go through the root. Let's take the D/2th node on the diameter it will still be on the longest side of the diameter path (wich is in all the cases the longest path from root to leaf). and therefore M-D/2 still represent this point from the root. Taking M-D/2nth from the root is the same as talking D/2nth from the leaf of the longest path. Am I clear enough ? You might just want to draw it to check it . |
|||||||||||||
|
|
You could calculate this in linear time O(N) by storing a list of the nodes that you have traversed if you are using a recursive method where you calculate the diameter by using the height of the tree (see this website here). For instance, adapt the linear-time Your setup would look like the following:
Now the function returns a series of pointers in the P.S. I understand that utilizing copying functions is not the fastest approach, but I wanted to be clearer rather than make something that was faster but had too much pointer-twiddling. |
||||
|
|
|
|||
|
|