What is the maximum total number of nodes in a tree that has
N levels? Note that the root is level (zero)
Answer Posted / salmiya thilsath.a
2^(N+1)-1..
if N=0; it is 2-1=1,1 is the max no of node in the tree
if N=1; it is 4-1=3, 3 is the max no of nodes in the tree
if N=2; it is 8-1=7, 7 is the max
and it goes like that...........
| Is This Answer Correct ? | 124 Yes | 8 No |
Post New Answer View All Answers
What is stable sorting method?
Define splay tree?
When is a binary search algorithm best applied?
Treemap orders the elements on which field?
Which data structures are used in bfs and dfs algorithm?
In depth questions regarding the data structures and the Databases used in the Projects developed.
How to show internal storage representation of data structure in RDBM?
You are given a singly linked list. How would you find out if it contains a loop or not without using temporary space?
How do you get placements?
Write a program to reverse a single linked list.
What are the advantages of binary search over linear search?
What is subtree?
What is the function of stack?
Devise a program to sort an array using bubble sort.
What are the types of data structures?