What is a 2-3 tree? What is it’s guarantee? How does it compare to a Binary Tree?

What is the recursive definition of a 2-3 Tree
A 2-3 tree of height h is defined as follows:
Note: each child of the root is a 2-3 tree and all the children have the same height (the leaves are all on the same level)


Yes

No

No

Yes
In general how is information stored in a 2-3 tree?
Draw an interior node v with two children Tl and Tr

Draw an interior node v with three children Tl and Tr


12! just count the leaves, they are the only thing that can store data


In general how do you search in a 2-3 tree?





In general how does an insert work with a 2-3 tree?
How would this tree change when pi is added?


How does a two-child parent insert work if the new leaf’s key is < Lsearch’s key?









Draw how you would insert 43 into the following tree:


What is the solution to the following?


Draw what the insert would look like for the following tree:

