Vidyalelo
Data Structure · Q79

Binary Search Trees(B Tree)

Programming · Data Structure · question 79

Q79

What is the space complexity of the post-order traversal in the recursive fashion? (d is the tree depth and n is the number of nodes)

A.
O(1)
B.
O(nlogd)
C.
O(logd)
D.
O(d)
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board