Pergunta de entrevista da empresa Palantir Technologies

Do a postorder binary tree traversal with constant memory (no stacks).

Respostas da entrevista

Sigiloso

5 de jul. de 2012

I can't see this being possible without destroying the tree. My solution: Right rotate at the root until the root has no left child. When this occurs, you go to its right child and either rotate until that position has no left child, or print it if it has no left child. break out of both loops when there are no children while(root has any children) ...while(root has left children) ......rotate root right ......new root = old root's parent ...print root ...new root = old root's right child

Sigiloso

19 de mar. de 2012

Traverse the binary tree iteratively. Keep track of the nodes which have been visited.