Изменения рейтингов за последние раунды временно удалены. Скоро они будут возвращены. ×

Binary search trees

Правка en1, от calmhandtitan, 2016-07-31 09:14:13

Given two binary search trees with identical structure, same node value but just one node with different values, how can we determine this node (by determining the node I mean the path from root to this node).

An obvious solution is to do traversal for both the trees and keep track of the path. But this would take O(n).

My question is can we do better than O(n) for this problem?

Теги binary search tree

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en1 Английский calmhandtitan 2016-07-31 09:14:13 408 Initial revision (published)