1,716 views
0 votes
0 votes
What will be the order of B+ tree with a database of 5,00,000 records of 200 bytes each and the search key is 15 bytes?Assume tree and data pointers are are 5 bytes each and the index node is 1024 bytes?

2 Answers

0 votes
0 votes
the formula      nPb+(n-1)(k+Pd) <=  Block size

in given picture k+Pd= 15 put, how?

whereas Pb and Pd =5B

k+Pd =15+5 = 20 should there?
edited by
0 votes
0 votes
for linternal node:-     P*(B.P.)+(P-1)K <=Block size

        5(P)+15(P-1)<=1024

  20P-15<=1024

P=51.9

P= ~51

for leaf node:    B.P.+(P-1)(K+R)<=1024

5+(P-1)(20)<=1024

20P-15<=1024

P=51.9

P=~51

Related questions

3 votes
3 votes
4 answers
1
1 votes
1 votes
1 answer
3
Pawan Kumar 7 asked Jun 16, 2018
4,406 views
"A bottom up parser tries to find the right most deviation of the given input in the reverse order " what does this line mean Please Explain