
Building Java Programs: A Back to Basics Approach (4th Edition)
4th Edition
ISBN: 9780134322766
Author: Stuart Reges, Marty Stepp
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
Chapter 17, Problem 2PP
Program Plan Intro
Encode and decode of Morse code files
Program plan:
- Create an class“MorseTree”,
- Construct the object for “BinaryTreeNode”.
- Declare the size variable
- Specify the necessary constants
- Define the constructor to creates a new instance of “MorseTree”,
- Create the object to set up the tree
- Initialize the dictionary by filling it with object pairs with numbers.
- Initialize the dictionary by filling it with object pairs with alphabets.
- Initialize the dictionary by filling it with object pairs with numbers.
- Define the method “putn()”,
- Assign the initial values.
- Assign the value get from “getRoot()” to the object.
- Construct the object for “BinaryTreeNode”.
- Execute loop till down to the path,
- Assign the substring.
- Check whether the values are equal,
- Check whether there is a left child,
- Get and assign the left child.
- Otherwise, Set the left child.
- Increment the size.
- Assign the left child to the binary tree.
- Get and assign the left child.
- Call the method “set_Parent()”.
- Check whether there is a left child,
- Otherwise,
- Check there is a right child,
- Get and assign the right child.
- Otherwise,
- Set the right child.
- Increment the size.
- Assign the right child to the binary tree.
- Get the right child.
- Set the parent to the right child.
- Check there is a right child,
- Set the element.
- Define the method “decode()”,
- Assign the necessary values to the variable
- Get the root of the tree
- Execute till the length,
- Get and assign the substring.
- Check whether the values are equal,
- Check there is a left child,
- Get the left child.
- Otherwise,
- Throws an exception "RuntimeException”.
- Otherwise, check whether the values are equal,
- Check there is a right child,
- Get the right child.
- Otherwise,
- Throws an exception "RuntimeException".
- Check there is a right child,
- Check there is a left child,
- Return the elements.
- Define the method “getRoot()” to return the root.
- Define the method “size()” to return the size.
- Define the method “main()” ,
- Print the heading.
- Create the object for MorseTree.
- Assign the decode fragment.
- Print the values.
- Print the decoded output for those values.
- Create a class “BinaryTreeNode”,
- Declare the object variables.
- Define the constructor to create an empty binary tree.
- Define the parameterized constructor to set the elements into the binary tree.
- Define the method “set_Parent()” to set the parent node.
- Define the method “getParent()” to return the parent node.
- Define the method “set_LeftChild()” to set the left child.
- Define the method “set_RightChild()” to set the right child.
- Define the method “has_LeftChild()” to check there is a left child.
- Define the method “has_RightChild()” to check there is a right child.
- Define the method “set_Element()” to set the element into the tree.
- Define the method “get_LeftChild()” to return the left child.
- Define the method “get_RightChild()” to return the right child.
- Define the method “element()” to return the element.
- Define the method “get_Height()” to find the height of the tree.
- Define the method “find_Height()” ,
- Check whether the node is a leaf,
- Return “0”.
- Otherwise, return the computed value.
- Check whether the node is a leaf,
- Define the method “isLeaf()”,
- Return the Boolean value.
- Define the method “getSize()” to return the size.
- Define the method “findSize()” to find the size.
Expert Solution & Answer

Want to see the full answer?
Check out a sample textbook solution
Students have asked these similar questions
Need help making python code for this!
2.7 LAB: Smallest of two numbers
Instructor note:
Note: this section of your textbook contains activities that you will complete for points. To ensure your work is scored, please access this page from the assignment link provided in the CTU Virtual Campus. If you did not access this page via the CTU Virtual Campus, please do so now.
I help understanding this question
d'y + 4dy +3y = a, Initial Conditions: y(0) = 5 & y'(0)=0
Where a = 10
a) Find y(t) =yh(t) +yp(t) in time domainIs the system over-damped, under-damped, or critical?
b) Find y(t) using Laplace Transforms
Chapter 17 Solutions
Building Java Programs: A Back to Basics Approach (4th Edition)
Ch. 17.1 - Prob. 1SCPCh. 17.1 - Prob. 2SCPCh. 17.1 - Prob. 3SCPCh. 17.2 - Prob. 4SCPCh. 17.2 - Prob. 5SCPCh. 17.2 - Prob. 6SCPCh. 17.2 - Prob. 7SCPCh. 17.2 - Prob. 8SCPCh. 17.2 - Prob. 9SCPCh. 17.3 - Prob. 10SCP
Ch. 17.3 - Prob. 11SCPCh. 17.3 - Prob. 12SCPCh. 17.3 - Prob. 13SCPCh. 17.4 - Prob. 14SCPCh. 17.4 - Prob. 15SCPCh. 17.4 - Prob. 16SCPCh. 17.4 - Prob. 17SCPCh. 17.4 - Prob. 18SCPCh. 17.4 - Prob. 19SCPCh. 17.4 - Prob. 20SCPCh. 17.4 - Prob. 21SCPCh. 17.4 - Prob. 22SCPCh. 17.4 - Prob. 23SCPCh. 17.4 - Prob. 24SCPCh. 17.4 - Prob. 25SCPCh. 17.5 - Prob. 26SCPCh. 17.5 - Prob. 27SCPCh. 17 - Prob. 1ECh. 17 - Prob. 2ECh. 17 - Prob. 3ECh. 17 - Prob. 4ECh. 17 - Prob. 5ECh. 17 - Prob. 6ECh. 17 - Prob. 7ECh. 17 - Prob. 8ECh. 17 - Prob. 9ECh. 17 - Prob. 10ECh. 17 - Prob. 11ECh. 17 - Prob. 12ECh. 17 - Prob. 13ECh. 17 - Prob. 14ECh. 17 - Prob. 15ECh. 17 - Prob. 16ECh. 17 - Prob. 17ECh. 17 - Prob. 18ECh. 17 - Prob. 19ECh. 17 - Prob. 20ECh. 17 - Prob. 2PP
Knowledge Booster
Similar questions
- Given f(t)=a sin(ßt) a = 10 & ß = 23 Find the Laplace Transform using the definition F(s) = ∫f(t)e-stdtarrow_forwardPlease do not use any AI tools to solve this question. I need a fully manual, step-by-step solution with clear explanations, as if it were done by a human tutor. No AI-generated responses, please.arrow_forwardObtain the MUX design for the function F(X,Y,Z) = (0,3,4,7) using an off-the-shelf MUX with an active low strobe input (E).arrow_forward
- I cannot program smart home automation rules from my device using a computer or phone, and I would like to know how to properly connect devices such as switches and sensors together ? Cisco Packet Tracer 1. Smart Home Automation:o Connect a temperature sensor and a fan to a home gateway.o Configure the home gateway so that the fan is activated when the temperature exceedsa set threshold (e.g., 30°C).2. WiFi Network Configuration:o Set up a wireless LAN with a unique SSID.o Enable WPA2 encryption to secure the WiFi network.o Implement MAC address filtering to allow only specific clients to connect.3. WLC Configuration:o Deploy at least two wireless access points connected to a Wireless LAN Controller(WLC).o Configure the WLC to manage the APs, broadcast the configured SSID, and applyconsistent security settings across all APs.arrow_forwardusing r language for integration theta = integral 0 to infinity (x^4)*e^(-x^2)/2 dx (1) use the density function of standard normal distribution N(0,1) f(x) = 1/sqrt(2pi) * e^(-x^2)/2 -infinity <x<infinity as importance function and obtain an estimate theta 1 for theta set m=100 for the estimate whatt is the estimate theta 1? (2)use the density function of gamma (r=5 λ=1/2)distribution f(x)=λ^r/Γ(r) x^(r-1)e^(-λx) x>=0 as importance function and obtain an estimate theta 2 for theta set m=1000 fir the estimate what is the estimate theta2? (3) use simulation (repeat 1000 times) to estimate the variance of the estimates theta1 and theta 2 which one has smaller variance?arrow_forwardusing r language A continuous random variable X has density function f(x)=1/56(3x^2+4x^3+5x^4).0<=x<=2 (1) secify the density g of the random variable Y you find for the acceptance rejection method. (2) what is the value of c you choose to use for the acceptance rejection method (3) use the acceptance rejection method to generate a random sample of size 1000 from the distribution of X .graph the density histogram of the sample and compare it with the density function f(x)arrow_forward
- using r language a continuous random variable X has density function f(x)=1/4x^3e^-(pi/2)^4,x>=0 derive the probability inverse transformation F^(-1)x where F(x) is the cdf of the random variable Xarrow_forwardusing r language in an accelerated failure test, components are operated under extreme conditions so that a substantial number will fail in a rather short time. in such a test involving two types of microships 600 chips manufactured by an existing process were tested and 125 of them failed then 800 chips manufactured by a new process were tested and 130 of them failed what is the 90%confidence interval for the difference between the proportions of failure for chips manufactured by two processes? using r languagearrow_forwardI want a picture of the tools and the pictures used Cisco Packet Tracer Smart Home Automation:o Connect a temperature sensor and a fan to a home gateway.o Configure the home gateway so that the fan is activated when the temperature exceedsa set threshold (e.g., 30°C).2. WiFi Network Configuration:o Set up a wireless LAN with a unique SSID.o Enable WPA2 encryption to secure the WiFi network.o Implement MAC address filtering to allow only specific clients to connect.3. WLC Configuration:o Deploy at least two wireless access points connected to a Wireless LAN Controller(WLC).o Configure the WLC to manage the APs, broadcast the configured SSID, and applyconsistent security settings across all APs.arrow_forward
- A. What will be printed executing the code above?B. What is the simplest way to set a variable of the class Full_Date to January 26 2020?C. Are there any empty constructors in this class Full_Date?a. If there is(are) in which code line(s)?b. If there is not, how would an empty constructor be? (create the code lines for it)D. Can the command std::cout << d1.m << std::endl; be included after line 28 withoutcausing an error?a. If it can, what will be printed?b. If it cannot, how could this command be fixed?arrow_forwardCisco Packet Tracer Smart Home Automation:o Connect a temperature sensor and a fan to a home gateway.o Configure the home gateway so that the fan is activated when the temperature exceedsa set threshold (e.g., 30°C).2. WiFi Network Configuration:o Set up a wireless LAN with a unique SSID.o Enable WPA2 encryption to secure the WiFi network.o Implement MAC address filtering to allow only specific clients to connect.3. WLC Configuration:o Deploy at least two wireless access points connected to a Wireless LAN Controller(WLC).o Configure the WLC to manage the APs, broadcast the configured SSID, and applyconsistent security settings across all APs.arrow_forwardTransform the TM below that accepts words over the alphabet Σ= {a, b} with an even number of a's and b's in order that the output tape head is positioned over the first letter of the input, if the word is accepted, and all letters a should be replaced by the letter x. For example, for the input aabbaa the tape and head at the end should be: [x]xbbxx z/z,R b/b,R F ① a/a,R b/b,R a/a, R a/a,R b/b.R K a/a,R L b/b,Rarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education