If the parent Pointer is available we can use if( node->right->data > node->parent->data || node->right->data < node->data) to identify the leaf nodes and use it as one of the recursion terminating condition in the original Height determining Algorithm.
@Divya, I think u meant node != node->right->left On Sat, Jun 26, 2010 at 3:54 PM, divya jain <[email protected]>wrote: > yes.. > > i got the solution traverse till node->right!=node->right->left... at this > point u ll get height.. rite? > > > On 26 June 2010 11:49, Raj N <[email protected]> wrote: > >> @Divya: What will happen when say node->right when you reach the leaves ? >> Is it equivalent to node->next and node->left = = node->previous in the >> doubly linked list ? >> >> >> On Tue, Jun 22, 2010 at 4:44 PM, divya <[email protected]> wrote: >> >>> a bst is given whose leaf nodes having left as well as right pointers >>> not pointing to NULL. rather all the leaf nodes are forming a circular >>> doubly linked list. u have to calculate height of tree. >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "Algorithm Geeks" group. >>> To post to this group, send email to [email protected]. >>> To unsubscribe from this group, send email to >>> [email protected]<algogeeks%[email protected]> >>> . >>> For more options, visit this group at >>> http://groups.google.com/group/algogeeks?hl=en. >>> >>> >> -- >> You received this message because you are subscribed to the Google Groups >> "Algorithm Geeks" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]<algogeeks%[email protected]> >> . >> For more options, visit this group at >> http://groups.google.com/group/algogeeks?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups > "Algorithm Geeks" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<algogeeks%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/algogeeks?hl=en. > -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
