BIG JAVA: LATE OBJECTS
BIG JAVA: LATE OBJECTS
2nd Edition
ISBN: 9781119626220
Author: Horstmann
Publisher: WILEY
Question
Book Icon
Chapter 18, Problem 13PE
Program Plan Intro

Find the minimum in a Heap

Program plan:

Filename: “MinHeap.java”

This code snippet creates a class “MinHeap”. In the code,

  • Import the required packages.
  • Define a class “MinHeap”.
    • Create an array list “elements”.
    • Define the constructor “MinHeap()”.
      • Define the array list “elements”.
      • Initialize “elements” with “null”.
    • Define a method “add()”.
      • Add a new leaf using “add()”.
      • Declare a variable “index” and set the value to it.
      • Iterate a “while” loop,
        • Set elements to “elements” using method “set()”.
        • Get the parent index of “index”.
          • Set the “newElement” to “index” using “set()”.
    • Define a method “peak()” of type “E”.
      • Get the first element of “elements” and return the value.
    • Define a method “remove()”.
      • Get the first element of “elements” to “minimum”.
      • Define the “lastIndex”.
      • Get the element at “lastIndex” to “last”.
      • If “lastIndex” is greater than 1,
        • Add element “last” at index 1.
        • Call the method “fixHeap()”.
          • Return “minimum”.
    • Define a method “fixHeap()”,
      • Get the first element to “root”.
      • Define the variable “lastIndext” by setting last index of “elements”.
      • Set “index” equal to 1.
      • Declare a Boolean variable “true”.
      • Iterate a “while” loop,
        • Call the method “getLeftChildIndex()” on “index” and set the value to “childIndex”.
        • If “childIndex” is less than or equal to “lastIndex”,
          • Call “getIndexChild()” of “index” to “child”.
          • If the condition is true,
            • Call “getRightChildIndex()” on “index” and set the result value to “childIndex”.
            • Call the method “getRightChild()” on “index” and set the value to “child”.
          • If the condition is true,
            • Set “child” at “index”.
            • Set “childIndex” to “index”.
          • Else,
            • Set “false” to “more”.
        • Else,
          • Set “false” to “more”.
              • Set “root” to “index” using “set”.
    • Define a method “empty()”,
      • Return “true” if “size” of “element” equal to 1,
    • Define the method “getLeftChildIndex()”,
      • Return the index.
    • Define the method “getRightChildIndex()”,
      • Return the index.
    • Define the method “getParentIndex()”,
      • Return the index.
    • Define the method “getLeftChild()”,
      • Return the element.
    • Define the method “getRightChild()”,
      • Return the element.
    • Define the method “getParent()”,
      • Return the element.

Filename: “MinHeapTester.java”

This code snippet creates a class “MinHeapTester”. In the code,

  • Import the required packages.
  • Define a class “MinHeapTester”.
    • Define the “main” method.
      • Declare a “MinHeap” named “heap”.
      • Add elements to “heap” using “add()” method.
      • Remove an element from “heap” and store it in a string variable “top”.
      • Print the value of “top”.
      • Print the expected value of “top”.
      • Remove an element from “heap” and store it in a string variable “top”.
      • Print the value of “top”.
      • Print the expected value of “top”.
      • Remove an element from “heap” and store it in a string variable “top”.
      • Print the value of “top”.
      • Print the expected value of “top”.

Blurred answer
Students have asked these similar questions
need help with thi Next, you are going to combine everything you've learned about HTML and CSS to make a static site portfolio piece. The page should first introduce yourself. The content is up to you, but should include a variety of HTML elements, not just text. This should be followed by an online (HTML-ified) version of your CV (Resume). The following is a minimum list of requirements you should have across all your content: Both pages should start with a CSS reset (imported into your CSS, not included in your HTML) Semantic use of HTML5 sectioning elements for page structure A variety other semantic HTML elements Meaningful use of Grid, Flexbox and the Box Model as appropriate for different layout components A table An image Good use of CSS Custom Properties (variables) Non-trivial use of CSS animation Use of pseudeo elements An accessible colour palette Use of media queries The focus of this course is development, not design. However, being able to replicate a provided design…
Using the notation

you can select multipy options
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education