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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

B-tree properties?

A
  1. every node has at most m children
  2. every node (except root) has at least m/2 children.
  3. the root has at least 2 children if it is not a leaf.
  4. a non leaf node with k children contain k-1 keys
  5. all data are kept in sorted order
  6. all leaves are at the same level.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly