Answer Posted / saurabh
A binary tree is a tree in which all nodes are connected and
each node has indegree of maximum and outdegree of maximum 2
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Tell me what should be done in the base case for this recursive problem?
Which is the slowest sorting algorithm?
Differentiate between priorityqueue and treeset.
Is heap sort faster than quicksort?
What do you mean by secondary clustering?
What do you mean by hash function?
Traverse the given tree using Inorder, Preorder and Postorder traversals. Inorder : D H B E A F C I G J Preorder: A B D H E C F G I J Postorder: H D E B F I J G C A
What is the minimum number of nodes in an avl tree of height h?
Which is faster array or list?
What is the default capacity of hashmap?
Calculate the efficiency of sequential search?
What is the difference between Array and LinkedList?
What is a stable algorithm?
How do you explain bubble sort?
Suppose in an integer array, there is 1 to 100 number, out of one is duplicate, how to find?