binary search trees and
play

Binary Search Trees and Balanced Binary Search Trees using AVL - PowerPoint PPT Presentation

1 CSCI 104 Binary Search Trees and Balanced Binary Search Trees using AVL Trees Mark Redekopp David Kempe Sandra Batista 2 Properties, Insertion and Removal BINARY SEARCH TREES 3 Binary Search Tree Binary search tree = binary tree


  1. 1 CSCI 104 Binary Search Trees and Balanced Binary Search Trees using AVL Trees Mark Redekopp David Kempe Sandra Batista

  2. 2 Properties, Insertion and Removal BINARY SEARCH TREES

  3. 3 Binary Search Tree • Binary search tree = binary tree where all nodes meet the property that: – All values of nodes in left subtree are less-than or equal than the parent’s value – All values of nodes in right subtree are greater-than or equal than the parent’s value 25 18 47 7 20 32 56 If we wanted to print the values in sorted order would you use an pre-order, in-order, or post-order traversal?

  4. 4 BST Insertion • Important: To be efficient (useful) we need to keep the binary search tree balanced • Practice: Build a BST from the data values below – To insert an item walk the tree (go left if value is less than node, right if greater than node) until you find an empty location, at which point you insert the new value Insertion Order: 25, 18, 47, 7, 20, 32, 56 Insertion Order: 7, 18, 20, 25, 32, 47, 56

  5. 5 BST Insertion • Important: To be efficient (useful) we need to keep the binary search tree balanced • Practice: Build a BST from the data values below – To insert an item walk the tree (go left if value is less than node, right if greater than node) until you find an empty location, at which point you insert the new value • https://www.cs.usfca.edu/~galles/visualization/BST.html Insertion Order: 25, 18, 47, 7, 20, 32, 56 Insertion Order: 7, 18, 20, 25, 32, 47, 56 25 7 18 18 47 20 7 20 32 56 25 32 47 A major topic we will talk about is algorithms to keep a BST balanced as we do 56 insertions/removals

  6. 6 Successors & Predecessors • Let's take a quick tangent that will help us understand how to do BST Removal • Given a node in a BST – Its predecessor is defined as the next smallest value in the tree – Its successor is defined as the next biggest value in the tree • Where would you expect to find a node's successor? • Where would find a node's predecessor? m

  7. 7 Predecessors Pred(50) • If left child exists, predecessor is the 50 right most node of the left subtree 20 60 • Else walk up the ancestor chain until you 10 30 traverse the first right child pointer (find the first node who is a right child of his 25 parent…that parent is the predecessor) Pred(25) – If you get to the root w/o finding a node 50 who is a right child, there is no predecessor 20 60 10 30 25

  8. 8 Predecessors Pred(50) = 30 • If left child exists, predecessor is the 50 right most node of the left subtree 20 60 • Else walk up the ancestor chain until you traverse the first right child 10 30 pointer (find the first node who is a 25 right child of his parent…that parent is Pred(25)=20 the predecessor) 50 – If you get to the root w/o finding a node who is a right child, there is no 20 60 predecessor 10 30 25

  9. 9 Successors Succ(20) • If right child exists, successor is the 50 left most node of the right subtree 20 60 • Else walk up the ancestor chain until you traverse the first left child pointer 10 30 (find the first node who is a left child 25 of his parent…that parent is the Succ(30) successor) 50 – If you get to the root w/o finding a node who is a left child, there is no successor 20 60 10 30 25

  10. 10 Successors Succ(20) = 25 • If right child exists, successor is the 50 left most node of the right subtree 20 60 • Else walk up the ancestor chain until you traverse the first left child pointer 10 30 (find the first node who is a left child 25 of his parent…that parent is the Succ(30)=50 successor) 50 – If you get to the root w/o finding a node who is a left child, there is no successor 20 60 10 30 25

  11. 11 BST Removal • To remove a value from a BST… – First find the value to remove by walking the tree – If the value is in a leaf node, simply remove that leaf node – If the value is in a non-leaf node, swap the value with its in-order successor or predecessor and then remove the value • A non-leaf node's successor or predecessor is guaranteed to be a leaf node (which we can remove) or have 1 child which can be promoted • We can maintain the BST properties by putting a value's successor or predecessor in its place Remove 25 Remove 30 Remove 20 50 Either… 50 50 50 10 60 20 60 20 60 20 60 50 20 30 Swap w/ 10 30 10 30 10 30 25 60 …or… pred 25 25 25 25 10 30 Swap w/ 20 is a non-leaf so can't delete it Leaf node so 1-Child so just where it is…swap w/ successor succ just delete it promote child 20 or predecessor

  12. 12 Worst Case BST Efficiency • Insertion #include<iostream> using namespace std; // Bin. Search Tree – Balanced: _________ template <typename T> class BST { – Unbalanced: _________ public: BTree(); ~BTree(); • Removal virtual bool empty() = 0; virtual void insert(const T& v) = 0; virtual void remove(const T& v) = 0; – Balanced: ________ virtual T* find(const T& v) = 0; }; – Unbalanced: _________ • Find/Search – Balanced: __________ – Unbalanced: __________

  13. 13 BST Efficiency • Insertion #include<iostream> using namespace std; // Bin. Search Tree – Balanced: O(log n) template <typename T> class BST { – Unbalanced: O(n) public: BTree(); ~BTree(); • Removal virtual bool empty() = 0; virtual void insert(const T& v) = 0; virtual void remove(const T& v) = 0; – Balanced : O(log n) virtual T* find(const T& v) = 0; }; – Unbalanced: O(n) • Find/Search – Balanced : O(log n) – Unbalanced: O(n)

  14. 14 Tree Traversals • A traversal iterates over all nodes of the tree – Usually using a depth-first, recursive approach • Three general traversal orderings – Pre-order [Process root then visit subtrees] – In-order [Visit left subtree, process root, visit right subtree] – Post-order [Visit left subtree, visit right subtree, process root] Preorder(TreeNode* t) Inorder(TreeNode* t) { if t == NULL return { if t == NULL return 60 process(t) // print val. Inorder(t->left) Preorder(t->left) process(t) // print val. Preorder(t->right) Inorder(t->right) 20 80 } } 10 20 25 30 50 60 80 60 20 10 30 25 50 80 10 30 Postorder(TreeNode* t) { if t == NULL return Postorder(t->left) Postorder(t->right) 25 50 process(t) // print val. } 10 25 50 30 20 80 60

  15. 15 Trees & Maps/Sets • C++ STL "maps" and "sets" use binary search trees internally to store their keys (and values) that can grow or contract as needed • This allows O(log n) time to find/check membership – BUT ONLY if we keep the tree balanced! Map::find("Mark") Map::find("Greg") key value Returns iterator to end() Returns iterator to "Jordan" Student [i.e. NULL] object corresponding pair<string, Student> "Frank" Student "Percy" Student object object "Anne" Student "Greg" Student "Tommy" Student object object object

  16. 16 The key to balancing… TREE ROTATIONS

  17. 17 BST Subtree Ranges • Consider a binary search tree, what range of values could be in the subtree rooted at each node – At the root, any value could be in the "subtree" – At the first left child? – At the first right child? What values might be in (-inf, inf) (-inf,inf) the subtree z x rooted here ( ) ( ) ( ) ( ) y d a y ( ) ( ) ( ) ( ) c b x z ( ) ( ) ( ) ( ) a b c d

  18. 18 BST Subtree Ranges • Consider a binary search tree, what range of values could be in the subtree rooted at each node – At the root, any value could be in the "subtree" – At the first left child? – At the first right child? (-inf, inf) (-inf, inf) z x (-inf, z) (z, inf) (-inf, x) (x, inf) y d a y (x, y) (y, inf) (-inf, y) (y,z) c b x z (y,z) (z,inf) (-inf, x) (x,y) a b c d

  19. 19 Right Rotation • Define a right rotation as taking a left child, making it the parent and making the original parent the new right child • Where do subtrees a, b, c and d belong? – Use their ranges to reason about it… (-inf, inf) z y Right rotate of (-inf, z) (z, inf) z y d x z (-inf, y) (y,z) ___ ___ c ___ ___ x (-inf, x) (x,y) a b

  20. 20 Right Rotation • Define a right rotation as taking a left child, making it the parent and making the original parent the new right child • Where do subtrees a, b, c and d belong? – Use their ranges to reason about it… (-inf, inf) z y Right rotate of (-inf, z) (z, inf) z y d x z (-inf, y) (y,z) a b c c d x (-inf, x) (x,y) (y,z) (z, inf) (-inf, x) (x,y) a b

  21. 21 Left Rotation • Define a left rotation as taking a right child, making it the parent and making the original parent the new left child • Where do subtrees a, b, c and d belong? – Use their ranges to reason about it… (-inf, inf) y x Left rotate of (-inf, x) (x, inf) x x z a y (x, y) (y, inf) ___ ___ ___ ___ b z (y,z) (z,inf) c d

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend