recategorized by
610 views
0 votes
0 votes
A B tree has order 10. Suppose it's leaf node already has 9 elements and one more element is inserted in it and split occurs. Now my question is is it always necessary that the split is of size 4 and 5 ie left child contain 4 values and right child node contain 5 values? Or it could also be 5 and 4? Thanks.
recategorized by

1 Answer

Best answer
2 votes
2 votes
split can be either from 4 to 5 or from 5 to 4 depending on options implement it,since it is ambiguous these type of questions have less chances to come.
selected by

Related questions

0 votes
0 votes
0 answers
1
0 votes
0 votes
3 answers
2
Na462 asked Feb 2, 2019
2,092 views
0 votes
0 votes
0 answers
3
bts1jimin asked Jan 9, 2019
384 views
Can anyone suggest me any useful source from where I can read b+ tree insertion and deletion?
0 votes
0 votes
1 answer
4
Markzuck asked Dec 18, 2018
484 views
By default take ROOT at level 1 or 0?and if asked for B tree then take all the levels but for B+ records only at leaf so only leaf level keys right?