Ahmad Ateyablog.ahmadateya.com·Jun 30, 2023B+Tree in DBMSIntroduction In this article, we will explore B+ Trees, a fundamental data structure extensively utilized in DBMS, especially for table indexes. Building upon our previous discussion of Hash Tables, we will delve into the design considerations, imple...Discuss·50 readsCMU's Intro to DBMSDBMS
Rahul Bhattrahulsbhatt.hashnode.dev·Jul 3, 2020Exploring Multi-Way Search Trees: A Comprehensive OverviewThe data structure that is used in database A M-way search tree has similar concept of that of binary tree and has M-1 values per nodes and M-sub trees. In this type of tree, M is called the degree of the tree. Fig.1. Structure of M-Way Search Tree ...Discuss·29 readsMulti-way search trees