Write a program that gets all the nodes at a relative height. public List getNodesAtHeight(Node root, int height) { List nodes = new ArrayList<> (); getNodesAtHeight(root, 0, height, nodes); return nodes; { } private void getNodesAtHeight(Node node, int currentHeight, int targetHeight, List nodes) //todo }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Array Concepts
Section: Chapter Questions
Problem 18RQ
icon
Related questions
Question

please answer with proper explanation and step by step solution.

Write a program that gets all the
nodes at a relative height.
public List<Node>
getNodesAtHeight(Node root, int
height)
{
();
List<Node> nodes = new ArrayList<>
getNodesAtHeight(root, 0, height,
nodes);
return nodes;
{
}
private void getNodesAtHeight(Node
node, int currentHeight, int
targetHeight, List<Node> nodes)
//todo
}
Transcribed Image Text:Write a program that gets all the nodes at a relative height. public List<Node> getNodesAtHeight(Node root, int height) { (); List<Node> nodes = new ArrayList<> getNodesAtHeight(root, 0, height, nodes); return nodes; { } private void getNodesAtHeight(Node node, int currentHeight, int targetHeight, List<Node> nodes) //todo }
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Time complexity
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT