SlideShare a Scribd company logo
Prabhat Raghav 08/07/16 1
B+ Trees
 Similar to B trees, with a few slight
differences
 All data is stored at the leaf nodes (leaf
pages); all other nodes (index pages) only
store keys
 Leaf pages are linked to each other
 Keys may be duplicated; every key to the
right of a particular key is >= to that key
2
B+ Tree Example
9, 16
2, 7 12 18
1 7
93, 4, 6 12
16 19
Prabhat Raghav 08/07/16
3
B+ Tree Insertion
 Insert at bottom level
 If leaf page overflows, split page and copy
middle element to next index page
 If index page overflows, split page and move
middle element to next index page
Prabhat Raghav 08/07/16
4
B+ Tree Insertion Example
9, 16
2, 7 12 18
1 7
93, 4, 6 12
16 19
Insert 5
Prabhat Raghav 08/07/16
5
B+ Tree Insertion Example
9, 16
2, 7 12 18
1 7
93, 4, 5,6 12
16 19
Insert 5
Prabhat Raghav 08/07/16
6
B+ Tree Insertion Example
9, 16
2, 5, 7 12 18
1 7
9
3, 4
12
16 19
Split page,
copy 5
5, 6
Prabhat Raghav 08/07/16
7
B+ Tree Insertion Example 2
9, 13, 16
93, 4, 6 14 16, 18, 20
Insert 17
Prabhat Raghav 08/07/16
8
B+ Tree Insertion Example 2
Insert 17
9, 13, 16
93, 4, 6 14 16, 17, 18, 20
Prabhat Raghav 08/07/16
9
B+ Tree Insertion Example 2
Split leaf
page, copy 18
9, 13, 16, 18
93, 4, 6 14 16, 17 18, 20
Prabhat Raghav 08/07/16
10
B+ Tree Insertion Example 2
Split index
page, move 13
16, 18
93, 4, 6 14
9
13
16, 17 18, 20
Prabhat Raghav 08/07/16
11
B+ Tree Deletion
 Delete key and data from leaf page
 If leaf page underflows, merge with sibling
and delete key in between them
 If index page underflows, merge with sibling
and move down key in between them
Prabhat Raghav 08/07/16
12
B+ Tree Deletion Example
Remove 9
93, 4, 6
9
13
16, 18
14 16, 17 18, 20
Prabhat Raghav 08/07/16
13
B+ Tree Deletion Example
Remove 9
3, 4, 6
9
13
16, 18
14 16, 17 18, 20
Prabhat Raghav 08/07/16
14
B+ Tree Deletion Example
Leaf page underflow,
so merge with sibling
and remove 9
3, 4, 6
13
16, 18
14 16, 17 18, 20
Prabhat Raghav 08/07/16
15
B+ Tree Deletion Example
Index page underflow,
so merge with sibling
and demote 13
13, 16, 18
3, 4, 6 14 16, 17 18, 20
Prabhat Raghav 08/07/16
16
Threaded Trees
 Binary trees have a lot of wasted space: the
leaf nodes each have 2 null pointers
 We can use these pointers to help us in
inorder traversals
 We have the pointers reference the next
node in an inorder traversal; called threads
 We need to know if a pointer is an actual link
or a thread, so we keep a boolean for each
pointer
Prabhat Raghav 08/07/16
17
Threaded Tree Code
 Example code:
class Node {
Node left, right;
boolean leftThread, rightThread;
}
Prabhat Raghav 08/07/16
18
Threaded Tree Example
8
75
3
11
13
1
6
9
Prabhat Raghav 08/07/16
19
Threaded Tree Traversal
 We start at the leftmost node in the tree, print
it, and follow its right thread
 If we follow a thread to the right, we output
the node and continue to its right
 If we follow a link to the right, we go to the
leftmost node, print it, and continue
Prabhat Raghav 08/07/16
20
Threaded Tree Traversal
8
75
3
11
13
1
6
9
Start at leftmost node, print it
Output
1
Prabhat Raghav 08/07/16
21
Threaded Tree Traversal
8
75
3
11
13
1
6
9
Follow thread to right, print node
Output
1
3
Prabhat Raghav 08/07/16
22
Threaded Tree Traversal
8
75
3
11
13
1
6
9
Follow link to right, go to
leftmost node and print
Output
1
3
5
Prabhat Raghav 08/07/16
23
Threaded Tree Traversal
8
75
3
11
13
1
6
9
Follow thread to right, print node
Output
1
3
5
6
Prabhat Raghav 08/07/16
24
Threaded Tree Traversal
8
75
3
11
13
1
6
9
Follow link to right, go to
leftmost node and print
Output
1
3
5
6
7
Prabhat Raghav 08/07/16
25
Threaded Tree Traversal
8
75
3
11
13
1
6
9
Follow thread to right, print node
Output
1
3
5
6
7
8
Prabhat Raghav 08/07/16
26
Threaded Tree Traversal
8
75
3
11
13
1
6
9
Follow link to right, go to
leftmost node and print
Output
1
3
5
6
7
8
9
Prabhat Raghav 08/07/16
27
Threaded Tree Traversal
8
75
3
11
13
1
6
9
Follow thread to right, print node
Output
1
3
5
6
7
8
9
11
Prabhat Raghav 08/07/16
28
Threaded Tree Traversal
8
75
3
11
13
1
6
9
Follow link to right, go to
leftmost node and print
Output
1
3
5
6
7
8
9
11
13
Prabhat Raghav 08/07/16
29
Threaded Tree Traversal Code
Node leftMost(Node n) {
Node ans = n;
if (ans == null) {
return null;
}
while (ans.left != null) {
ans = ans.left;
}
return ans;
}
void inOrder(Node n) {
Node cur = leftmost(n);
while (cur != null) {
print(cur);
if (cur.rightThread) {
cur = cur.right;
} else {
cur = leftmost(cur.right);
}
}
}
Prabhat Raghav 08/07/16
30
Threaded Tree Modification
 We’re still wasting pointers, since half of our
leafs’ pointers are still null
 We can add threads to the previous node in
an inorder traversal as well, which we can
use to traverse the tree backwards or even to
do postorder traversals
Prabhat Raghav 08/07/16
31
Threaded Tree Modification
8
75
3
11
13
1
6
9
Prabhat Raghav 08/07/16
Thank You!
32Prabhat Raghav 08/07/16

More Related Content

Viewers also liked

Presenter wepro ingenieursbureau
Presenter wepro ingenieursbureauPresenter wepro ingenieursbureau
Presenter wepro ingenieursbureauhubertboerrigter
 
Louisiana-Shelby and Isatu
Louisiana-Shelby and Isatu Louisiana-Shelby and Isatu
Louisiana-Shelby and Isatu
klei8103
 
تفسير جديد لسورة الصافات
تفسير جديد لسورة الصافاتتفسير جديد لسورة الصافات
تفسير جديد لسورة الصافات
Nabil Akbar
 
Historical Images of the Sun
Historical Images of the SunHistorical Images of the Sun
Historical Images of the Sun
Hanna Sathiapal, fingertip hands-on science
 
Things we fight about
Things we fight aboutThings we fight about
Things we fight about
Roger Hernandez
 
สังคมศึกษา
สังคมศึกษาสังคมศึกษา
สังคมศึกษาikwanz
 
Fiko Store
Fiko StoreFiko Store
Fiko Store
fegome1
 
Tips en tricks voor het schrijven van een succesvol IWT dossier
Tips en tricks voor het schrijven van een succesvol IWT dossierTips en tricks voor het schrijven van een succesvol IWT dossier
Tips en tricks voor het schrijven van een succesvol IWT dossier
innovatiecentra
 
Xcute
XcuteXcute
Xcute
vidar_top
 
Timbales_Slideshow
Timbales_SlideshowTimbales_Slideshow
Timbales_Slideshow
eglantinesarrasin
 
7. susret 17.11.2011. konkretno lice boga oca
7. susret 17.11.2011.   konkretno lice boga oca7. susret 17.11.2011.   konkretno lice boga oca
7. susret 17.11.2011. konkretno lice boga ocaMeri-Lucijeta
 
Magazine cover
Magazine coverMagazine cover
Magazine cover
JamesTredinnick
 
Universalism n critical values for the environment
Universalism n critical values for the environmentUniversalism n critical values for the environment
Universalism n critical values for the environment
nadya_ip
 
North Carolina-Sophie and Hannah
North Carolina-Sophie and Hannah North Carolina-Sophie and Hannah
North Carolina-Sophie and Hannah
klei8103
 
South Carolina- Angel
South Carolina- AngelSouth Carolina- Angel
South Carolina- Angel
klei8103
 
Wayne pua sm portfolio
Wayne pua sm portfolioWayne pua sm portfolio
Wayne pua sm portfolio
Wayne Pua
 
Third grade class newsletter
Third grade class newsletterThird grade class newsletter
Third grade class newsletter
rahynes
 
How Hearing Aids Work
How Hearing Aids WorkHow Hearing Aids Work

Viewers also liked (19)

Presenter wepro ingenieursbureau
Presenter wepro ingenieursbureauPresenter wepro ingenieursbureau
Presenter wepro ingenieursbureau
 
Louisiana-Shelby and Isatu
Louisiana-Shelby and Isatu Louisiana-Shelby and Isatu
Louisiana-Shelby and Isatu
 
تفسير جديد لسورة الصافات
تفسير جديد لسورة الصافاتتفسير جديد لسورة الصافات
تفسير جديد لسورة الصافات
 
Historical Images of the Sun
Historical Images of the SunHistorical Images of the Sun
Historical Images of the Sun
 
Things we fight about
Things we fight aboutThings we fight about
Things we fight about
 
สังคมศึกษา
สังคมศึกษาสังคมศึกษา
สังคมศึกษา
 
Fiko Store
Fiko StoreFiko Store
Fiko Store
 
Tips en tricks voor het schrijven van een succesvol IWT dossier
Tips en tricks voor het schrijven van een succesvol IWT dossierTips en tricks voor het schrijven van een succesvol IWT dossier
Tips en tricks voor het schrijven van een succesvol IWT dossier
 
Kohus
KohusKohus
Kohus
 
Xcute
XcuteXcute
Xcute
 
Timbales_Slideshow
Timbales_SlideshowTimbales_Slideshow
Timbales_Slideshow
 
7. susret 17.11.2011. konkretno lice boga oca
7. susret 17.11.2011.   konkretno lice boga oca7. susret 17.11.2011.   konkretno lice boga oca
7. susret 17.11.2011. konkretno lice boga oca
 
Magazine cover
Magazine coverMagazine cover
Magazine cover
 
Universalism n critical values for the environment
Universalism n critical values for the environmentUniversalism n critical values for the environment
Universalism n critical values for the environment
 
North Carolina-Sophie and Hannah
North Carolina-Sophie and Hannah North Carolina-Sophie and Hannah
North Carolina-Sophie and Hannah
 
South Carolina- Angel
South Carolina- AngelSouth Carolina- Angel
South Carolina- Angel
 
Wayne pua sm portfolio
Wayne pua sm portfolioWayne pua sm portfolio
Wayne pua sm portfolio
 
Third grade class newsletter
Third grade class newsletterThird grade class newsletter
Third grade class newsletter
 
How Hearing Aids Work
How Hearing Aids WorkHow Hearing Aids Work
How Hearing Aids Work
 

Recently uploaded

Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
Assessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptxAssessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptx
Kavitha Krishnan
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 

Recently uploaded (20)

Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
Assessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptxAssessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptx
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 

B+tree by Prabhat Raghav