1 / 20

Lecture 22 Binary Search Trees Chapter 10 of textbook 1. Binary Search Tree (BST) Threaded Tree

Lecture 22 Binary Search Trees Chapter 10 of textbook 1. Binary Search Tree (BST) Threaded Tree. 1. Binary Search Trees. A binary search tree (BST), also known as an ordered binary tree, is a variant of binary tree in which the nodes are arranged in order.

jleger
Download Presentation

Lecture 22 Binary Search Trees Chapter 10 of textbook 1. Binary Search Tree (BST) Threaded Tree

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lecture 22 Binary Search Trees Chapter 10 of textbook 1. Binary Search Tree (BST) • Threaded Tree

  2. 1. Binary Search Trees • A binary search tree (BST), also known as an ordered binary tree, is a variant of binary tree in which the nodes are arranged in order. • In a BST, all nodes in the left sub-tree have a value less than that of the root node. • Correspondingly, all nodes in the right sub-tree have a value either equal to or greater than the root node. • The same rule is applicable to every sub-tree in the tree. • Due to its efficiency in searching elements, BSTs are widely used in dictionary problems where the code always inserts and searches the elements that are indexed by some key value.

  3. Binary Search Tree 39 27 45 18 29 40 54 9 21 28 36 59 19 65 10 60

  4. Creating a Binary Search from Given Values 45, 39, 56, 12, 34, 78, 32, 10, 89, 54, 67 45 45 45 45 45 45 45 39 56 39 56 39 56 39 39 56 39 56 12 78 12 78 12 12 34 34 45 34 32 39 56 45 45 12 78 39 56 39 56 10 34 12 54 78 12 54 78 10 34 89 32 67 10 34 89 32 32

  5. Algorithm to Insert a Value in a BST Insert (TREE, VAL) Step 1: IF TREE = NULL, then Allocate memory for TREE SET TREE->DATA = VAL SET TREE->LEFT = TREE ->RIGHT = NULL ELSE IF VAL < TREE->DATA Insert(TREE->LEFT, VAL) ELSE Insert(TREE->RIGHT, VAL) [END OF IF] [END OF IF] Step 2: End

  6. Searching for a Value in a BST • The search function is used to find whether a given value is present in the tree or not. • The function first checks if the BST is empty. If it is, then the value we are searching for is not present in the tree, and the search algorithm terminates by displaying an appropriate message. • If there are nodes in the tree then the search function checks to see if the key value of the current node is equal to the value to be searched. • If not, it checks if the value to be searched for is less than the value of the node, in which case it should be recursively called on the left child node. • In case the value is greater than the value of the node, it should be recursively called on the right child node.

  7. Algorithm to Search a Value in a BST searchElement(TREE, VAL) Step 1: IF TREE->DATA = VAL OR TREE = NULL, then Return TREE ELSE IF VAL < TREE->DATA Return searchElement(TREE->LEFT, VAL) ELSE Return searchElement(TREE->RIGHT, VAL) [END OF IF] [END OF IF] Step 2: End

  8. Searching for a Value in a BST 39 27 45 18 29 40 54 9 21 28 36 59 19 65 10 60 Search 28 Search 20

  9. Deleting a Value from a BST 45 45 45 45 39 56 39 56 39 56 39 56 54 78 54 78 54 78 54 55 55 55 55 • The delete function deletes a node from the binary search tree. • Deletion operation needs to keep the property of BSTs. • The deletion of a node involves any of the three cases. Case 1: Deleting a node that has no children. For example, deleting node 78 in the tree below.

  10. Deleting a Value from a BST 45 45 45 45 39 56 39 56 39 56 39 56 54 78 54 78 54 78 55 78 55 55 55 • Case 2: Deleting a node with one child (either left or right). • To handle the deletion, the node’s child is set to be the child of the node’s parent. • Now, if the node was the left child of its parent, the node’s child becomes the left child of the node’s parent. • Correspondingly, if the node was the right child of its parent, the node’s child becomes the right child of the node’s parent.

  11. Deleting a Value from a BST 45 45 45 45 39 56 39 56 39 55 39 55 54 78 54 78 54 78 54 78 55 80 55 80 55 80 80 • Case 3: Deleting a node with two children. • To handle this case of deletion, replace the node’s value with its in-order predecessor (largest value in the left sub-tree) or in-order successor (smallest value in the right sub-tree). • The in-order predecessor or the successor can then be deleted using any of the above cases.

  12. Algorithm to Delete from a BST Delete (TREE, VAL) Step 1: IF TREE = NULL, then Write “VAL not found in the tree” ELSE IF VAL < TREE->DATA Delete(TREE->LEFT, VAL) ELSE IF VAL > TREE->DATA Delete(TREE->RIGHT, VAL) ELSE IF TREE->LEFT AND TREE->RIGHT SET TEMP = findLargestNode(TREE->LEFT) SET TREE->DATA = TEMP->DATA Delete(TREE->LEFT, TEMP->DATA) ELSE SET TEMP = TREE IF TREE->LEFT = NULL AND TREE ->RIGHT = NULL SET TREE = NULL ELSE IF TREE->LEFT != NULL SET TREE = TREE->LEFT ELSE SET TREE = TREE->RIGHT [END OF IF] FREE TEMP [END OF IF] Step 2: End See class example

  13. Find the Largest Value in a BST 39 27 45 18 29 40 54 9 21 28 36 59 10 65 19 60

  14. Finding the Largest Node in a BST • The basic property of a BST states that the larger value will occur in the right sub-tree. • If the right sub-tree is NULL, then the value of root node will be largest as compared with nodes in the left sub-tree. • So, to find the node with the largest value, we will find the value of the rightmost node of the right sub-tree. • If the right sub-tree is empty then we will find the value of the root node. findLargestElement (TREE) Step 1: IF TREE = NULL OR TREE->RIGHT = NULL, then Return TREE ELSE Return findLargestElement(TREE->RIGHT) [END OF IF] Step 2: End

  15. Finding the Smallest Node in a BST • The basic property of a BST states that the smaller value will occur in the left sub-tree. • If the left sub-tree is NULL, then the value of root node will be smallest as compared with nodes in the right sub-tree. • So, to find the node with the smallest value, we will find the value of the leftmost node of the left sub-tree. • However, if the left sub-tree is empty then we will find the value of the root node. findSmallestElement (TREE) Step 1: IF TREE = NULL OR TREE->LEFT = NULL, then Return TREE ELSE Return findSmallestElement(TREE->LEFT) [END OF IF] Step 2: End

  16. Balanced BST Balanced BST, i.e. height of left and right subtrees are equal or not much differences at any nodeExample: a full binary tree of n nodesThe search in can be done in log(n) time, O(log n). Depth of recursion is O(log n) Time complexity O(log n) Space complexity O(log n) A BST is not balanced in general !

  17. 2. Threaded Binary Trees • In the linked representation of a BST, a number of nodes contain a NULL pointer either in their left or right fields or in both. This space that is wasted in storing a NULL pointer can be efficiently used to store some other useful piece of information. • For example, the NULL entries can be replaced to store a pointer to the in-order predecessor, or the in-order successor of the node. These special pointers are called threads and binary trees containing threads are called threaded trees. In the linked representation of a threaded binary tree, threads will be denoted using dotted lines.

  18. Threaded Binary Trees 1 1 2 3 2 3 4 5 6 7 4 X 5 6 X 7 8 9 10 11 12 11 X 8 X 9 X 10 X X 12 X • In one way threading, a thread will appear either in the right field or the left field of the node. • If the thread appears in the left field, then it points to the in-order predecessor of the node. Such a one way threaded tree is called a left threaded binary tree. • If the thread appears in the right field, then it will point to the in-order successor of the node. Such a one way threaded tree is called a right threaded binary tree. Binary tree with one way threading

  19. Advantages of Threaded Binary Trees • Traversal can be implemented by loop Space complexity : O(1) See textbook example

  20. Threaded Binary Trees 1 2 3 4 5 6 7 X 8 9 10 12 X 11 1 2 3 4 5 6 7 8 9 10 11 12 • In a two way threaded tree, also called a doubled threaded tree, threads will appear in both the left and right fields of the node. • While the left field will point to the in-order predecessor of the node, the right field will point to its successor. • A two way threaded binary tree is also called a fully threaded binary tree. Binary tree with two way threading

More Related