B-Tree Flashcards
1
Q
B-tree adalah?
A
generalisasi dari 2-3 tree dimana setiap node dalam menampung sampai m data. Cocok untuk data yang besar. biasanya digunakan dalam database
2
Q
B-tree properties?
A
- every node has at most m children
- every node (except root) has at least m/2 children.
- the root has at least 2 children if it is not a leaf.
- a non leaf node with k children contain k-1 keys
- all data are kept in sorted order
- all leaves are at the same level.