LIS Links

First and Largest Academic Social Network of LIS Professionals in India

Latest Activity

Prangyasini Nayak is attending Dr. Jagadish Bujugundala's event

One Day National Workshop on One Nation One Subscription for Research Excellence at Government Degree College, Mulugu,

November 7, 2025 all day
3 hours ago
Prangyasini Nayak is attending neema shukla's event
Thumbnail

International Conference on Libraries and Emerging Technologies for Smart Knowledge Ecosystems (ICLET 2025) at Jaipur,Rajasthan

November 14, 2025 at 9am to November 15, 2025 at 6pm
3 hours ago
Dr. U. PRAMANATHAN posted a blog post
7 hours ago
shekar.H.P posted an event
Thumbnail

International Conference on Readers are Leaders at Siddaganga Institute of Technology (SIT), Tumkur

February 26, 2026 at 3pm to February 28, 2026 at 6pm
7 hours ago
Dr. Badan Barman updated an event

28th National Convention on Knowledge, Library and Information Networking (NACLIN 2025) at Hotel Lemon Tree Premier, City Center, Pune

December 3, 2025 at 9pm to December 5, 2025 at 6pm
7 hours ago
Dr. Badan Barman updated an event
7 hours ago
Profile IconTakan Bhatt and Divya Sahu joined LIS Links
7 hours ago
shashi bisht and Dr. Badan Barman are now friends
17 hours ago
UMARKHAIYAM DULEMIYA MULANI updated their profile
yesterday
Abid Hussain replied to Amarjit Kumar Singh's discussion CALL FOR CHAPTER IN AN EDITED BOOK ENTITLED, “Innovative Library Services, Implementation of ICT, and the Incorporation of Artificial Intelligence Tools”
yesterday
Nishita Goswami updated their profile
Tuesday
Angel updated their profile
Tuesday
Profile IconThanga Tamilarasi, Dr Vijaykumar B Gopale, UMARKHAIYAM DULEMIYA MULANI and 16 more joined LIS Links
Tuesday
preeti verma is now friends with amit sana and mandhata pratap singh
Monday
MD SAFIQUR RAHAMAN and sandeep shukla are now friends
Saturday
RAKESH KUMAR updated their profile
Oct 30
mukesh left a comment for Dr Nupur Srivastava
Oct 29
mukesh left a comment for Dr Nupur Srivastava
Oct 29
Shakeel Ahmad Mir updated their profile
Oct 27
Dr. U. PRAMANATHAN posted a blog post
Oct 26

ratika kapoor

Views: 281

Reply to This

Replies to This Forum

B-Tree is an indexing technique most commonly used in databases and file systems where pointers to data are placed in a balance tree structure so that all references to any data can be accessed in an equal time frame. It is also a tree data structure which keeps data sorted so that searching, inserting and deleting can be done in logarithmic amortized time.

The B-Tree belongs to a group of techniques in computer science known as self-balancing search trees which attempts to automatically keep the number of levels of nodes under the root small at all times. It is the most preferred way to implement sets, associative arrays and other data structures that are used in computer programming languages, relational database management systems and low level data manipulations.

B-Trees

Introduction

A B-tree is a specialized multiway tree designed especially for use on disk. In a B-tree each node may contain a large number of keys. The number of subtrees of each node, then, may also be large. A B-tree is designed to branch out in this large number of directions and to contain a lot of keys in each node so that the height of the tree is relatively small. This means that only a small number of nodes must be read from disk to retrieve an item. The goal is to get fast access to the data, and with disk drives this means reading a very small number of records. Note that a large node size (with lots of keys in the node) also fits with the fact that with a disk drive one can usually read a fair amount of data at once.

Definitions

A multiway tree of order m is an ordered tree where each node has at most m children. For each node, if k is the actual number of children in the node, then k - 1 is the number of keys in the node. If the keys and subtrees are arranged in the fashion of a search tree, then this is called a multiway search tree of order m. For example, the following is a multiway search tree of order 4. Note that the first row in each node shows the keys, while the second row shows the pointers to the child nodes. Of course, in any useful application there would be a record of data associated with each key, so that the first row in each node might be an array of records where each record contains a key and its associated data. Another approach would be to have the first row of each node contain an array of records where each record contains a key and a record number for the associated data record, which is found in another file

RSS

© 2025   Created by Dr. Badan Barman.   Powered by

Badges  |  Report an Issue  |  Terms of Service

Koha Workshop