Presentation is loading. Please wait.

Presentation is loading. Please wait.

Trees Main and Savitch Chapter 10. Binary Trees A binary tree has nodes, similar to nodes in a linked list structure. Data of one sort or another may.

Similar presentations


Presentation on theme: "Trees Main and Savitch Chapter 10. Binary Trees A binary tree has nodes, similar to nodes in a linked list structure. Data of one sort or another may."— Presentation transcript:

1 Trees Main and Savitch Chapter 10

2 Binary Trees A binary tree has nodes, similar to nodes in a linked list structure. Data of one sort or another may be stored at each node. But it is the connections between the nodes which characterize a binary tree.

3 A Binary Tree of States In this example, the data contained at each node is one of the 50 states.

4 A Binary Tree of States Each tree has a special node called its root, usually drawn at the top.

5 A Binary Tree of States Each tree has a special node called its root, usually drawn at the top. The example tree has Washington as its root. The example tree has Washington as its root.

6 A Binary Tree of States Each node is permitted to have two links to other nodes, called the left child and the right child.

7 A Binary Tree of States Children are usually drawn below a node. The right child of Washington is Colorado. The right child of Washington is Colorado. The left child of Washington is Arkansas. The left child of Washington is Arkansas.

8 A Binary Tree of States Some nodes have only one child. Arkansas has a left child, but no right child. Arkansas has a left child, but no right child.

9 A Quiz Some nodes have only one child. Which node has only a right child? Which node has only a right child?

10 A Quiz Some nodes have only one child. Florida has only a right child. Florida has only a right child.

11 A Binary Tree of States A node with no children is called a leaf.

12 A Binary Tree of States Each node is called the parent of its children. Washington is the parent of Arkansas and Colorado. Washington is the parent of Arkansas and Colorado.

13 A Binary Tree of States Two rules about parents: ¶The root has no parent. ·Every other node has exactly one parent.

14 A Binary Tree of States Two nodes with the same parent are called siblings. Arkansas and Colorado are siblings. Arkansas and Colorado are siblings.

15 Complete Binary Trees A complete binary tree is a special kind of binary tree which will be useful to us.

16 Complete Binary Trees A complete binary tree is a special kind of binary tree which will be useful to us. When a complete binary tree is built, its first node must be the root. When a complete binary tree is built, its first node must be the root.

17 Complete Binary Trees The second node of a complete binary tree is always the left child of the root...

18 Complete Binary Trees The second node of a complete binary tree is always the left child of the root...... and the third node is always the right child of the root.

19 Complete Binary Trees The next nodes must always fill the next level from left to right.

20 Complete Binary Trees The next nodes must always fill the next level from left to right.

21 Complete Binary Trees The next nodes must always fill the next level from left to right.

22 Complete Binary Trees The next nodes must always fill the next level from left to right.

23 Complete Binary Trees The next nodes must always fill the next level from left to right.

24 Complete Binary Trees The next nodes must always fill the next level from left to right.

25 Is This Complete?

26

27

28

29 Yes! It is called the empty tree, and it has no nodes, not even a root.

30 Implementing a Complete Binary Tree We will store the data from the nodes in a partially-filled array. An array of data We don't care what's in this part of the array. An integer to keep track of how many nodes are in the tree 3

31 Implementing a Complete Binary Tree We will store the date from the nodes in a partially-filled array. An array of data We don't care what's in this part of the array. An integer to keep track of how many nodes are in the tree 3 Read Section 10.2 to see details of how the entries are stored. Read Section 10.2 to see details of how the entries are stored.

32 Depth of Binary Tree This example, depth = 3

33 Depth of Binary Tree This example, depth = 2

34 Depth of Binary Tree This example, depth = 0

35 Depth of Complete Binary Tree Given a complete binary tree of N nodes, what is the depth? D = 0 N = 1 D = 1 N = 3 D = 2 N = 7 D = 1 N = 2 D = 2 N = 4

36 Depth of Complete Binary Tree Given a complete binary tree of N nodes, what is the depth? D = 0 N = 1 D = 1 N = 3 D = 2 N = 7 D = 1 N = 2 D = 2 N = 4 D = floor(log N) = O(log N)

37 Depth of Binary Tree Given a binary tree of N nodes, what is the maximum possible depth? D = 0 N = 1 D = 2 N = 3 D = 4 N = 5 D = O(N)

38 Binary trees contain nodes. Each node may have a left child and a right child. If you start from any node and move upward, you will eventually reach the root. Every node except the root has one parent. The root has no parent. Complete binary trees require the nodes to fill in each level from left-to-right before starting the next level. Summary

39 One of the tree applications in Chapter 10 is binary search trees. In Chapter 10, binary search trees are used to implement bags and sets. This presentation illustrates how another data type called a dictionary is implemented with binary search trees. Binary Search Trees

40 The Dictionary Data Type A dictionary is a collection of items, similar to a bag. But unlike a bag, each item has a string attached to it, called the item's key.

41 The Dictionary Data Type A dictionary is a collection of items, similar to a bag. But unlike a bag, each item has a string attached to it, called the item's key. Example: The items I am storing are records containing data about a state.

42 The Dictionary Data Type A dictionary is a collection of items, similar to a bag. But unlike a bag, each item has a string attached to it, called the item's key. Example: The key for each record is the name of the state. Washington

43 The Dictionary Data Type The insertion procedure for a dictionary has two parameters. void Dictionary::insert(The key for the new item, The new item); Washington

44 The Dictionary Data Type When you want to retrieve an item, you specify the key... Item Dictionary::retrieve("Washington");

45 The Dictionary Data Type p When you want to retrieve an item, you specify the key...... and the retrieval procedure returns the item.

46 The Dictionary Data Type We'll look at how a binary tree can be used as the internal storage mechanism for the dictionary.

47 Arizona Arkansas Colorado A Binary Search Tree of States The data in the dictionary will be stored in a binary tree, with each node containing an item and a key. Washington Oklahoma Florida Mass. New Hampshire West Virginia

48 Colorado Arizona Arkansas A Binary Search Tree of States Washington Oklahoma Colorado Florida Mass. New Hampshire West Virginia Storage rules: 1.Every key to the left of a node is alphabetically before the key of the node.

49 Arizona Colorado Arkansas A Binary Search Tree of States Storage rules: 1.Every key to the left of a node is alphabetically before the key of the node. Washington Oklahoma Florida Mass. New Hampshire West Virginia Example: ' Massachusetts' and ' New Hampshire' are alphabetically before 'Oklahoma'

50 Arizona Arkansas A Binary Search Tree of States Storage rules: 1.Every key to the left of a node is alphabetically before the key of the node. 2.Every key to the right of a node is alphabetically after the key of the node. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire

51 Arizona Arkansas A Binary Search Tree of States Storage rules: 1.Every key to the left of a node is alphabetically before the key of the node. 2.Every key to the right of a node is alphabetically after the key of the node. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire

52 Arizona Arkansas Retrieving Data Start at the root. 1. If the current node has the key, then stop and retrieve the data. 2. If the current node's key is too large, move left and repeat 1-3. 3. If the current node's key is too small, move right and repeat 1-3. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire

53 Arizona Arkansas Retrieve ' New Hampshire' Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Start at the root. 1. If the current node has the key, then stop and retrieve the data. 2. If the current node's key is too large, move left and repeat 1-3. 3. If the current node's key is too small, move right and repeat 1-3.

54 Arizona Arkansas Retrieve 'New Hampshire' Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Start at the root. 1. If the current node has the key, then stop and retrieve the data. 2. If the current node's key is too large, move left and repeat 1-3. 3. If the current node's key is too small, move right and repeat 1-3.

55 Arizona Arkansas Retrieve 'New Hampshire' Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Start at the root. 1. If the current node has the key, then stop and retrieve the data. 2. If the current node's key is too large, move left and repeat 1-3. 3. If the current node's key is too small, move right and repeat 1-3.

56 Arizona Arkansas Retrieve 'New Hampshire' Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Start at the root. 1. If the current node has the key, then stop and retrieve the data. 2. If the current node's key is too large, move left and repeat 1-3. 3. If the current node's key is too small, move right and repeat 1-3.

57 Retrieval: Complexity Given a complete tree of N items, the depth D = O(log N). What is the maximum number of nodes tested to retrieve an item from the binary search tree if we use a complete tree? What is the maximum number of nodes tested (worst case) to retrieve an item from a binary search tree that is not complete or balanced?

58 Arizona Arkansas Adding a New Item with a Given Key 1. Pretend that you are trying to find the key, but stop when there is no node to move to. 2. Add the new node at the spot where you would have moved to if there had been a node. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire

59 Arizona Arkansas Adding 1.Pretend that you are trying to find the key, but stop when there is no node to move to. 2.Add the new node at the spot where you would have moved to if there had been a node. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa

60 Arizona Arkansas Adding 1.Pretend that you are trying to find the key, but stop when there is no node to move to. 2.Add the new node at the spot where you would have moved to if there had been a node. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa

61 Arizona Arkansas Adding 1.Pretend that you are trying to find the key, but stop when there is no node to move to. 2.Add the new node at the spot where you would have moved to if there had been a node. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa

62 Arizona Arkansas Adding 1.Pretend that you are trying to find the key, but stop when there is no node to move to. 2.Add the new node at the spot where you would have moved to if there had been a node. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa

63 Arizona Arkansas Adding 1.Pretend that you are trying to find the key, but stop when there is no node to move to. 2.Add the new node at the spot where you would have moved to if there had been a node. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa

64 Arizona Arkansas Adding 1.Pretend that you are trying to find the key, but stop when there is no node to move to. 2.Add the new node at the spot where you would have moved to if there had been a node. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa

65 Arizona Arkansas Adding Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa Where would you add this state? Where would you add this state? Kazakhstan

66 Arizona Arkansas Adding Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa Kazakhstan is the new right child of Iowa? Kazakhstan is the new right child of Iowa? Kazakhstan

67 Adding: Complexity Given a complete tree of N items, the depth D = O(log N). What is the maximum number of nodes tested to add an item to the binary search tree if we use a complete tree? What is the maximum number of nodes tested (worst case) to add an item from a binary search tree that is not complete or balanced?

68 Arizona Arkansas Removing an Item with a Given Key 1.Find the item. 2.If necessary, swap the item with one that is easier to remove. 3.Remove the item. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa Kazakhstan

69 Arizona Arkansas Removing 'Florida' 1.Find the item. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa Kazakhstan

70 Arizona Arkansas Removing 'Florida' Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa Kazakhstan Florida cannot be removed at the moment... Florida cannot be removed at the moment...

71 Arizona Arkansas Removing 'Florida' Washington Oklahoma Colorado West Virginia Mass. New Hampshire Iowa Kazakhstan... because removing Florida would break the tree into two pieces.... because removing Florida would break the tree into two pieces.

72 Arizona Arkansas Removing 'Florida' Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa Kazakhstan The problem of breaking the tree happens because Florida has 2 children. The problem of breaking the tree happens because Florida has 2 children. 1.If necessary, do some rearranging.

73 Arizona Arkansas Removing 'Florida' If necessary, do some rearranging. Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Iowa Kazakhstan For the rearranging, take the smallest item in the right subtree... For the rearranging, take the smallest item in the right subtree...

74 Arizona Arkansas Removing 'Florida' Washington Oklahoma Colorado West Virginia Mass. New Hampshire Iowa Kazakhstan Iowa...copy that smallest item onto the item that we're removing......copy that smallest item onto the item that we're removing... If necessary, do some rearranging.

75 Arizona Arkansas Removing 'Florida' Washington Oklahoma Colorado West Virginia Mass. New Hampshire Iowa Kazakhstan... and then remove the extra copy of the item we copied...... and then remove the extra copy of the item we copied... If necessary, do some rearranging.

76 Arizona Arkansas Removing 'Florida' Washington Oklahoma Colorado West Virginia Mass. New Hampshire Iowa Kazakhstan... and reconnect the tree If necessary, do some rearranging.

77 Arizona Arkansas Removing 'Florida' Washington Oklahoma Colorado Florida West Virginia Mass. New Hampshire Kazakhstan Why did we choose the smallest item in the right subtree? Why did we choose the smallest item in the right subtree?

78 Arizona Arkansas Removing 'Florida' Washington Oklahoma Colorado West Virginia Mass. New Hampshire Iowa Kazakhstan Because every key must be smaller than the keys in its right subtree

79 Removing an Item with a Given Key 1.Find the item. 2.If the item has a right child, rearrange the tree: 1.Find smallest item in the right subtree 2.Copy that smallest item onto the one that you want to remove 3.Remove the extra copy of the smallest item (making sure that you keep the tree connected) 3. else just remove the item.

80 Binary search trees are a good implementation of data types such as sets, bags, and dictionaries. Searching for an item is generally quick since you move from the root to the item, without looking at many other items. Adding and deleting items is also quick. But as you'll see later, it is possible for the quickness to fail in some cases -- can you see why? Summary


Download ppt "Trees Main and Savitch Chapter 10. Binary Trees A binary tree has nodes, similar to nodes in a linked list structure. Data of one sort or another may."

Similar presentations


Ads by Google