
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
2-3 Trees - Data Structures and Algorithms in C++
A 2-3 Tree is a type of tree in data structures in which every node of the tree is either a 2 node
or 3 nodes. It is a special type of B-Tree with order 3.
A 2 node in the tree is one which has one data part and two child nodes.
A 3 node in the tree is one which has two data parts and three child nodes.
Fig:- A 2-3 tree
Properties of a 2-3 Tree:-
Every internal node is either a 2 node or a 3 node.
A node containing one data part can be a 2 node with exactly 2 children or a leaf node with no children.
A node containing two data parts can only be a 3 node with exactly 3 children.
All leaf nodes are always at the same level.
A 2-3 tree is always a height balanced tree.
Search operations are fast and efficient in a 2-3 tree.
2 Node:-
Exactly two children.
Left child with smaller weight.
Right child with greater weight.
Can be a leaf node with no child.
3 Node:-
Exactly three children.
2 data values.
Left child with weight smaller than left data value.
Middle child with weight in between both data values.
Right child with weight greater than right data value.
Can never be a leaf node.
Operations in a 2-3 Tree:-
1. Searching in a 2-3 tree
Similar to the search operation in a binary search tree as the data is sorted.
To search X in a 2-3 tree.
If tree is empty → return False
If we reach root node then return False (not found)
If X is less than the left data part, then search the left subtree
If X is greater than left data and more than right data, search the middle subtree.
If X is greater than the right data part, then search right subtree.
2. Inserting a node in a 2-3 tree
To insert X in a 2-3 tree.
If the tree is empty → Add X as root.
Search for the right position of X and add it as a leaf node.
If there is a leaf node with one data part, add X with and leaf node becomes 2 - Node.
If the leaf node has two data parts, add X. Split temporary 3-nodes and move data to parent nodes according to the sorting order.
Make 2-3 tree and add nodes in order → 10, 5, 8, 15, 23, 21
3. Deletion of a node in a 2-3 tree
To delete X in a 2-3 tree.
If the tree is empty return false.
Search for the position of X and delete it, then adjust the tree.
If X is part of 3 node delete X and adjust left value and middle value. Also adjust node’s ancestor’s left and middle value if necessary.
If X is part of 2 node then adjust and split the tree in a recursive manner arranging nodes in sorted order.
- Related Articles
- Binary Trees and Properties in Data Structures
- Binary Search Trees in Data Structures
- Optimal Binary Search Trees in Data Structures
- Tournament Trees, Winner Trees and Loser Trees in Data Structure
- 2-3 Trees (Search and Insert) in C/C++?
- Data objects and Structures
- Merge Algorithms in Data Structure
- Data Encryption: Types, Algorithms, Techniques, and Methods
- Abstract Data Type in Data Structures
- What are JavaScript data types and data structures?
- What are compound data types and data structures in Python?
- What is Randomized Algorithms and Data Stream Management System in data mining?
- Kernel Data Structures
- Kinetic Data Structures
- Applications of DFS and BFS in Data Structures
