@algoboy:

If you want  to use extra space go with sharad's algo: do inorder traversal
, store  in a buffer and use 2 pointer method.  T(n) =O(n) , S(n)=O(n)

If you don't want to use extra space , convert BST into circular DLL  or DLL
and use 2 pointer algorithm.  (conversion of BST into DLL is a simple algo,
already discussed)

T(n)=O(n) , S(n) =O(1). The only problem is you change the structure .
(There probably exists a working algo to convert a DLL to BST , i haven't
tried that yet although....)

-- 
Thanks & Regards,
Priyanka Chatterjee
Final Year Undergraduate Student,
Computer Science & Engineering,
National Institute Of Technology,Durgapur
India
http://priyanka-nit.blogspot.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algoge...@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to