Given a binary search tree, search for the second largest element.
Utilisateur anonyme
Perform an in-order traversal, but for every node, search for the right child first instead of the left child. The second visited node should be the second largest one.