Tree Visualization
(B Tree maintains balance with order = 3)
(B Tree maintains balance with order = 3)
B Tree is a self-balancing tree data structure that maintains sorted data and allows searches, insertions, and deletions in logarithmic time.
Key Properties:
Strengths:
Limitations:
| Operation | Time | Space |
|---|---|---|
| Insert | O(log n) | O(n) |
| Delete | O(log n) | O(n) |
| Search | O(log n) | O(n) |
| Get Min | O(log n) | O(1) |