Answer Posted / ajay
A binary tree is a data structure in which the nodes
contains at most two links(i.e.,left child and/or right
child)
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
What are different techniques for making hash function? Explain with example.
What happens if we put duplicate key in hashmap?
How do you represent a linked list?
What thread means?
Can we modify final arraylist?
Differentiate between compilers and interpreters.
What is a stable sort?
What is binary tree in discrete mathematics?
Can we change the size of an array at run time?
Which is faster quick sort or merge sort?
Differentiate between file and structure storage structure.
Does treemap allow duplicate keys?
What is a static structure?
an array t[100] which contains numbers between 1..99. Return the duplicated value. Try both O(n) and O(n-square).
How to find middle element of linked list in one pass?