0
5.2kviews
Write a short note on B-Tree
2 Answers
0
38views

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 …

Create a free account to keep reading this post.

and 3 others joined a min ago.

0
7views

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 …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.