objectives
play

Objectives To design and implement a binary search tree (25.2). To - PDF document

Chapter 25 Binary Search Trees Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 1 rights reserved. Objectives To design and implement a binary search tree (25.2). To represent binary trees


  1. Chapter 25 Binary Search Trees Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 1 rights reserved. Objectives ▪ To design and implement a binary search tree (§25.2). ▪ To represent binary trees using linked data structures (§25.2.1). ▪ To search an element in binary search tree (§25.2.2). ▪ To insert an element into a binary search tree (§25.2.3). ▪ To traverse elements in a binary tree (§25.2.4). ▪ To delete elements from a binary search tree (§25.3). ▪ To display binary tree graphically (§25.4). ▪ To create iterators for traversing a binary tree (§25.5). Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 2 rights reserved. Binary Trees A list, stack, or queue is a linear structure that consists of a sequence of elements. A binary tree is a hierarchical structure. It is either empty or consists of an element, called the root , and two distinct binary trees, called the left subtree and right subtree . 60 G 55 100 F R 57 67 45 107 M A T (A) (B) Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 3 rights reserved.

  2. Binary Tree Terms A Binary consists of – A root – A left binary tree (left child) – A right binary tree (right child) A node without children is a leaf . A node has one patent, except for the root. Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 4 rights reserved. Representing Binary Trees A binary tree can be represented using a set of linked nodes. Each node contains a value and two links named left and right that reference the left child and right child, respectively. class TreeNode<E> { E element; TreeNode<E> left; TreeNode<E> right; public TreeNode(E o) { element = o; } } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 5 rights reserved. Binary Search Tree A binary search tree of (key, value) pairs, with no duplicate keys, has the following properties Every node a left subtree has keys less than the key of the root Every node in its right subtree has keys greater than the key of the node. (often we only show the keys) What is the difference w.r.t heaps? Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 6 rights reserved.

  3. Searching an Element in a Binary Search Tree public search(E element) { TreeNode<E> current = root; // Start from the root while (current != null) if (element key less than the key in current.element) { current = current.left; // Go left } else if (element value greater than the value in current.element) { current = current.right; // Go right } else // Element matches current.element return found ; // Element is found return not found; // Element is not in the tree } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 7 rights reserved. Inserting an Element to a Binary Tree if (root == null) root = new TreeNode(element); Insert 101 into the following tree. else { // Locate the parent node current = root; while (current != null) if (element value < the value in current.element) { parent = current; current = current.left; } else if (element value > the value in current.element) { parent = current; current = current.right; } root 60 else return false; // Duplicate node not inserted 55 100 // Create the new node and attach it to the parent node if (element < parent.element) parent.left = new TreeNode(elemenet); 45 57 67 107 else parent.right = new TreeNode(elemenet); return true; // Element inserted } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 8 rights reserved. Trace Inserting 101 into the following tree if (root == null) root = new TreeNode(element); Insert 101 into the following tree. else { // Locate the parent node current = root; while (current != null) if (element value < the value in current.element) { parent = current; current = current.left; } else if (element value > the value in current.element) { parent = current; 60 current = current.right; root } else return false; // Duplicate node not inserted 55 100 // Create the new node and attach it to the parent node if (element < parent.element) parent.left = new TreeNode(elemenet); else 45 57 67 107 parent.right = new TreeNode(elemenet); return true; // Element inserted } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 9 rights reserved.

  4. Trace Inserting 101 into the following tree, cont. if (root == null) root = new TreeNode(element); Insert 101 into the following tree. else { // Locate the parent node current = root; while (current != null) if (element value < the value in current.element) { parent = current; current = current.left; } else if (element value > the value in current.element) { parent = current; current = current.right; root 60 } else current return false; // Duplicate node not inserted 55 100 // Create the new node and attach it to the parent node if (element < parent.element) parent.left = new TreeNode(elemenet); else 45 57 67 107 parent.right = new TreeNode(elemenet); return true; // Element inserted } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 10 rights reserved. Trace Inserting 101 into the following tree, cont. if (root == null) root = new TreeNode(element); Insert 101 into the following tree. else { // Locate the parent node current = root; while (current != null) if (element value < the value in current.element) { parent = current; current = current.left; } else if (element value > the value in current.element) { parent = current; current = current.right; root 60 } else current return false; // Duplicate node not inserted 55 100 // Create the new node and attach it to the parent node if (element < parent.element) parent.left = new TreeNode(elemenet); else 45 57 67 107 parent.right = new TreeNode(elemenet); return true; // Element inserted } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 11 rights reserved. Trace Inserting 101 into the following tree, cont. if (root == null) root = new TreeNode(element); Insert 101 into the following tree. else { // Locate the parent node current = root; while (current != null) 101 < 60? if (element value < the value in current.element) { parent = current; current = current.left; } else if (element value > the value in current.element) { parent = current; 60 current = current.right; root } else current return false; // Duplicate node not inserted 55 100 // Create the new node and attach it to the parent node if (element < parent.element) parent.left = new TreeNode(elemenet); else 45 57 67 107 parent.right = new TreeNode(elemenet); return true; // Element inserted } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 12 rights reserved.

  5. Trace Inserting 101 into the following tree, cont. if (root == null) root = new TreeNode(element); Insert 101 into the following tree. else { // Locate the parent node current = root; while (current != null) if (element value < the value in current.element) { parent = current; current = current.left; } 101 > 60? else if (element value > the value in current.element) { parent = current; current = current.right; root 60 } else current return false; // Duplicate node not inserted 55 100 // Create the new node and attach it to the parent node if (element < parent.element) parent.left = new TreeNode(elemenet); else 45 57 67 107 parent.right = new TreeNode(elemenet); return true; // Element inserted } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 13 rights reserved. Trace Inserting 101 into the following tree, cont. if (root == null) root = new TreeNode(element); Insert 101 into the following tree. else { // Locate the parent node current = root; while (current != null) if (element value < the value in current.element) { parent = current; current = current.left; } 101 > 60 true else if (element value > the value in current.element) { parent = current; current = current.right; root 60 } parent else current return false; // Duplicate node not inserted 55 100 // Create the new node and attach it to the parent node if (element < parent.element) parent.left = new TreeNode(elemenet); else 45 57 67 107 parent.right = new TreeNode(elemenet); return true; // Element inserted } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 14 rights reserved. Trace Inserting 101 into the following tree, cont. if (root == null) root = new TreeNode(element); Insert 101 into the following tree. else { // Locate the parent node current = root; while (current != null) if (element value < the value in current.element) { parent = current; current = current.left; } 101 > 60 true else if (element value > the value in current.element) { parent = current; 60 current = current.right; root } parent else current return false; // Duplicate node not inserted 55 100 // Create the new node and attach it to the parent node if (element < parent.element) parent.left = new TreeNode(elemenet); else 45 57 67 107 parent.right = new TreeNode(elemenet); return true; // Element inserted } Liang, Introduction to Java Programming, Tenth Edition, (c) 2013 Pearson Education, Inc. All 15 rights reserved.

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