Binary Search Trees

30
Binary Search Trees Chapter 12 1

description

Binary Search Trees. Chapter 12. Search trees -1. Search trees are data structures that support many dynamic-set operations , including SEARCH , MINIMUM, MAXIMUM, PREDECESSOR , SUCCESSOR, INSERT, and DELETE. Search trees - 2. - PowerPoint PPT Presentation

Transcript of Binary Search Trees

Page 1: Binary Search Trees

1

Binary Search Trees

Chapter 12

Page 2: Binary Search Trees

2

Page 3: Binary Search Trees

3

Search trees -1

• Search trees are data structures that support many dynamic-set operations, including SEARCH, MINIMUM, MAXIMUM, PREDECESSOR, SUCCESSOR, INSERT, and DELETE.

Page 4: Binary Search Trees

4

Search trees - 2

• Basic operations on a binary search tree take time proportional to the height of the tree. – For a complete binary tree with n nodes, such

operations run in (lg n) worst-case time.– If the tree is a linear chain of n nodes, however,

the same operations take (n) worst-case time.

Page 5: Binary Search Trees

5

What is a binary tree?

• Property 1: each node can have up to two successor nodes (children)– The predecessor node of a node is called its

parent– The "beginning" node is called the root (no

parent)– A node without children is called a leaf

• Property 2: a unique path exists from the root to every other node

Page 6: Binary Search Trees

6

What is a binary search tree?

• a tree can be represented by a linked data structure in which each node is an object.

Page 7: Binary Search Trees

7

key field - 1

• In addition to a key field and satellite data, each node contains fields left, right, and p that point to the nodes corresponding to its left child, its right child, and its parent, respectively.

• If a child or the parent is missing, the appropriate field contains the value NIL. The root node is the only node in the tree whose parent field is NIL.

Page 8: Binary Search Trees

8

key field -2

• The keys in a binary search tree are always stored in such a way as to satisfy the binary-search-tree property:

Page 9: Binary Search Trees

9

Page 10: Binary Search Trees

10

Inorder, preorder, and postorder

• The binary-search-tree property allows us to print out all the keys in a binary search tree in sorted order by a simple recursive algorithm, called an inorder tree walk. This algorithm is so named because the key of the root of a subtree is printed between the values in its left subtree and those in its right subtree.

• Similarly, a preorder tree walk prints the root before the values in either subtree, and

• A postorder tree walk prints the root after the values in its subtrees.

Page 11: Binary Search Trees

11

Page 12: Binary Search Trees

12

Page 13: Binary Search Trees

13

Page 14: Binary Search Trees

14

Page 15: Binary Search Trees

15

Page 16: Binary Search Trees

16

Page 17: Binary Search Trees

17

INORDER-TREE-WALK procedure

• Procedure to print all the elements in a binary search tree T , we call INORDER-TREE-WALK(root[T ]).

Page 18: Binary Search Trees

18

Page 19: Binary Search Trees

19

Querying a binary search tree

Page 20: Binary Search Trees

20

To search for the key 13 in the tree, we follow the path 15 → 6 → 7 → 13 from the root.

Pointer x

Page 21: Binary Search Trees

21

Minimum and maximum

Page 22: Binary Search Trees

22

Successor and predecessor

• Given a node in a binary search tree, it is sometimes important to be able to find its successor in the sorted order determined by an in-order tree walk. If all keys are distinct, the successor of a node x is the node with the smallest key greater than key[x].

Page 23: Binary Search Trees

23

Page 24: Binary Search Trees

24

Page 25: Binary Search Trees

25

Page 26: Binary Search Trees

26

- the successor of the node with key 15 in Figure 12.2 is the node with key 17- the successor of the node with key 13 is the node with key 15.

- If the right subtree of node x is nonempty, then the successor of x is just the leftmost node in the right subtree,- If the right subtree of node x is empty and x has a successor y, then y is the lowest ancestor of x whose left child is also an ancestor of x.

Page 27: Binary Search Trees

27

Insertion and deletion

Page 28: Binary Search Trees

28

Deletion

Page 29: Binary Search Trees

29

Page 30: Binary Search Trees

30

Randomly built binary search trees

Self study