0
5.6kviews
Write a short note on B-Tree
2 Answers
0
42views
written 8.8 years ago by |
Introduction:
The number of values that a particular node of a binary tree or an AVL tree can hold is 1.
The height of a tree needs to be reduced to increase the efficiency of operations.
Also, when the data is stored in secondary medium, the time required to access …
ADD COMMENT
EDIT
0
7views
written 2.5 years ago by |
B Tree - A search tree of order P is a tree such that each node contains almost P - 1 search values and P points in the order < P1, K1, P2, K2 .... Pq + +kq-1 , pq > where q < = p
Each P1 is pointer …
ADD COMMENT
EDIT
Please log in to add an answer.