1,409 views
0 votes
0 votes
Does values in Leaf nodes of B+ tree repeats or ever leaf node has an unique value?

1 Answer

0 votes
0 votes

==>in the B+ tree values  occur only in leaf node but keys can be occur any where in the B+ tree

now here first we note down that

==> the key present in the any non leaf should also be present in the leaf node but reverse is not true

==>  in the leaf node each key is associated with a value and this is known as keys value pair

==> each key value pair occur only once in the leaf nodes and that values will point to the records

==> maximum numbers of key value pair present in any  leaf node is called degree of the leaf nodes in  the B+ tree

Related questions

1 votes
1 votes
1 answer
1
Pawan Kumar 2 asked Dec 7, 2017
1,038 views
$\text{Insertion Sequence}$ : $8,5,1,7,3,12,9,6$Can someone plz show the Sequence of insertion in B+ tree step by step Thanks
2 votes
2 votes
1 answer
3
skywalker_19 asked Oct 8, 2018
681 views
How to prove that if same size blocks are allocated to B trees and B+ trees then:-No. of index nodes in B tree >= No. Of index nodes in B+ tree
2 votes
2 votes
1 answer
4
VS asked Dec 10, 2017
2,363 views
Suppose size of block 1000 bytes search key of 12 bytes, pointer size 8 bytes. How many maximum records in DB file which can index by dense B+ tree of 2 levels?