Presentation is loading. Please wait.

Presentation is loading. Please wait.

Binary Search Trees CIS 606 Spring 2010. Search trees Data structures that support many dynamic-set operations. – Can be used as both a dictionary and.

Similar presentations


Presentation on theme: "Binary Search Trees CIS 606 Spring 2010. Search trees Data structures that support many dynamic-set operations. – Can be used as both a dictionary and."— Presentation transcript:

1 Binary Search Trees CIS 606 Spring 2010

2 Search trees Data structures that support many dynamic-set operations. – Can be used as both a dictionary and as a priority queue. – Basic operations take time proportional to the height of the tree. – For complete binary tree with n nodes: worst case θ(lg n). – For linear chain of n nodes: worst case θ(n). – Different types of search trees include binary search trees, red-black trees (covered in Chapter 13), and B-trees (covered in Chapter 18). We will cover binary search trees, tree walks, and operations on binary search trees.

3 Binary search trees Binary search trees are an important data structure for dynamic sets. – Accomplish many dynamic-set operations in O(h) time, where h = height of tree. – As in Section 10.4, we represent a binary tree by a linked data structure in which each node is an object. – T.root points to the root of tree T. – Each node contains the attributes key (and possibly other satellite data). left: points to left child. right: points to right child. p: points to parent. T.root.p = NIL. – Stored keys must satisfy the binary-search-tree property. If y is in left subtree of x, then y.key ≤ x.key. If y is in right subtree of x, then y.key ≥ x.key.

4 Binary search trees

5 Example Correctness: Follows by induction directly from the binary-search-tree property. Time: Intuitively, the walk takes Θ(n) time for a tree with n nodes, because we visit and print each node once.

6 Querying a binary search tree Time: The algorithm recurses, visiting nodes on a downward path from the root. Thus, running time is O(h), where h is the height of the tree.

7 Maximum and minimum

8 Successor and predecessor Assuming that all keys are distinct, the successor of a node x is the node y such that y.key is the smallest key > x.key. (We can find x’s successor based entirely on the tree structure. No key comparisons are necessary.) If x has the largest key in the binary search tree, then we say that x’s successor is NIL. There are two cases: 1.If node x has a non-empty right subtree, then x’s successor is the minimum in x’s right subtree. 2.If node x has an empty right subtree, notice that: As long as we move to the left up the tree (move up through right children), we’re visiting smaller keys. x’s successor y is the node that x is the predecessor of (x is the maximum in y’s left subtree).

9 Successor and predecessor

10 Example Find the successor of the node with key value 15. Find the successor of the node with key value 6. Find the successor of the node with key value 4. Find the predecessor of the node with key value 6.

11 Time For both the TREE-SUCCESSOR and TREE- PREDECESSOR procedures, in both cases, we visit nodes on a path down the tree or up the tree. Thus, running time is O(h), where h is the height of the tree.

12 Insertion and deletion Insertion and deletion allows the dynamic set represented by a binary search tree to change. The binary-search-tree property must hold after the change. Insertion is more straightforward than deletion.

13 Insertion and deletion

14

15 Example Run TREE-INSERT(T, C) on the first sample binary search tree.

16 Example Result

17 Time Same as TREE-SEARCH. On a tree of height h, procedure takes O(h) time. TREE-INSERT can be used with INORDER-TREE- WALK to sort a given set of numbers.

18 Deletion Conceptually, deleting node z from binary search tree T has three cases: 1.If z has no children, just remove it. 2.If z has just one child, then make that child take z’s position in the tree, dragging the child’s subtree along. 3.If z has two children, then find z’s successor y and replace z by y in the tree. y must be in z’s right subtree and have no left child. The rest of z’s original right subtree becomes y’s new right subtree, and z’s left subtree becomes y’s new left subtree. – This case is a little tricky because the exact sequence of steps taken depends on whether y is z’s right child.

19 Deletion – The code organizes the cases a bit differently. Since it will move subtrees around within the binary search tree, it uses a subroutine, TRANSPLANT, to replace one subtree as the child of its parent by another subtree.

20 Deletion

21

22

23

24

25 Example

26 Time O(h), on a tree of height h. Everything is O(1) except for the call to TREEMINIMUM.

27 Minimizing running time We’ve been analyzing running time in terms of h (the height of the binary search tree), instead of n (the number of nodes in the tree). – Problem: Worst case for binary search tree is Θ(n)—no better than linked list. – Solution: Guarantee small height (balanced tree) — h = O(lg n). In later chapters, by varying the properties of binary search trees, we will be able to analyze running time in terms of n. – Method: Restructure the tree if necessary. Nothing special is required for querying, but there may be extra work when changing the structure of the tree (inserting or deleting). Red-black trees are a special class of binary trees that avoids the worst-case behavior of O(n) that we can see in “plain” binary search trees. Red-black trees are covered in detail in Chapter 13.


Download ppt "Binary Search Trees CIS 606 Spring 2010. Search trees Data structures that support many dynamic-set operations. – Can be used as both a dictionary and."

Similar presentations


Ads by Google