Menu

Binary Trees Questions

MCQ
111.
What are the worst case and average case complexities of a binary search tree?
forum Discussion
MCQ
112.
What are the conditions for an optimal binary search tree and what is its advantage?
forum Discussion
MCQ
113.
Why we need to a binary tree which is height balanced?
forum Discussion
MCQ
114.
What is a threaded binary tree traversal?
forum Discussion
MCQ
115.
What are the disadvantages of normal binary tree traversals?
forum Discussion
MCQ
116.
What may be the content of a node in threaded binary tree?
forum Discussion
MCQ
117.
What are null nodes filled with in a threaded binary tree?
forum Discussion
MCQ
118.
What is wrong with below code for inorder traversal of inorder threaded binary tree:

inordertraversal(threadedtreenode root):
   threadedtreenode q = inorderpredecessor(root)
   while(q!=root):
   q=inorderpredecessor(q)
   print q.data
forum Discussion
MCQ
119.
Depth First Search is equivalent to which of the traversal in the Binary Trees?
forum Discussion
MCQ
120.
Breadth First Search is equivalent to which of the traversal in the Binary Trees?
forum Discussion
chevron_left BackPage 12 of 12