Додати до Chrome
✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
For this tree:
What of the following traversal functions visit the nodes in this order?
26, 30, 32, 8, 3, 5, 21
inRL-order(right(T))
visit(root(T))
function post-order(T) if !ISEMPTY(T) then post-order(left(T)) post-order(right(T)) visit(root(T)) end function
function postRL-order(T) if !ISEMPTY(T) then postRL-order(right(T)) postRL-order(left(T)) visit(root(T)) end function
none of the others
Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!