1,184 views

2 Answers

2 votes
2 votes

If we take order of internal node = order of Leaf Node = 10.

Then, max. keys = 10-1= 9.

Children At Level 1 = 10
Children At Level 2 = 10*10
Children At Level 3 = 10*10*10
Total Nodes At Level 4 = 10*10*10

Total Keys = Total Record Pointers = Total Records Can be pointed out = 9*10*10*10=9000.

1 votes
1 votes

Order = maximum pointers per node = 10. So key =9

In B+ trees, data records to be indexed are always stored at the leaf level. So,

 

Level Max Node Max ptr Max key
1 1 10 9
2 10 $10^{2}$ 10$\times$9
3 $10^{2}$ $10^{3}$ $10^{2}\times$9
4 $10^{3}$ $10^{4}$ $10^{3}\times$9

So maximum number of records that can be indexed for a B+ tree =$10^{3}\times$9=9000

Related questions

0 votes
0 votes
1 answer
1
pranjalgennext asked Jan 13, 2017
318 views
Assume a B-plus tree as:Size of search key=15BSize of block=512BSize of record pointer=9BSize of block pointer=8BWhat is the maximum number of nodes that can be accomodat...
0 votes
0 votes
1 answer
2
pranjalgennext asked Dec 27, 2016
267 views
What is the maximum number of nodes if a B+ tree has order 4 and number of levels as 6?
0 votes
0 votes
1 answer
3
0 votes
0 votes
3 answers
4
Na462 asked Feb 2, 2019
2,092 views