Write a method that return 1 if there is a root-to-leaf path

Assignment Help Computer Engineering
Reference no: EM132206629

Question :

Write a method that returns 1 if there is a root-to-leaf path whose node values sum to target and returns 0 if there is no such root-to-leaf path.

For example, in the tree below there are exactly four root-to-leaf paths. The sums on these paths are 27, 22, 26, 18, so hasPathSum(22,tree) will return 1 for the tree shown and hasPathSum(32,tree) will return 0 for the tree shown.

Note that an empty tree will always return 0, regardless of the value oftarget. Similarly, a tree with exactly one node will result in returning 1 if target is the value in the node, and zero otherwise.

The TreeNode class will be accessible when your method is tested.

public class TreeNode { int info;

TreeNode left;

TreeNode right;

TreeNode(int x){

info = x;

}

TreeNode(int x, TreeNode lNode, TreeNode rNode)

{ info = x; left = lNode; right = rNode; } }

skeleton code is provided below:

public class PathSum {

public int hasPath(int target TreeNode tree){

// replace with working code

return 0; } }

Examples:

target = 5 tree = {5,x,x}
Returns 1, there is a path whose sum is target

target = 4 tree = {5,x,x}
Returns 0, there is no path that sums to 5

target = 18 tree = {5, 4, 11, 7, x, x, 2, x, x, x, 8, 13, x, x, 4, x, 1, x, x}

Returns 1, this is the tree diagrammed above

Reference no: EM132206629

Questions Cloud

Optimal strategy assuming that he purchases the contract : Use a decision tree to nd the investor's optimal strategy assuming that he purchases the contract.
Jeremy only course of action is to go to arbitration : Using the principles we have discussed and in the IRAC Format, discuss whether Jeremy's only course of action is to go to arbitration.
Find the inflation rate using gdp deflator and cpi : Find the inflation rate using GDP deflator and CPI. Explain the reason why there might be a difference between two inflation rates.
Detailed technical report to client as sole agent : Write a detailed technical report to a client as a sole agent of a medical equipment e.g. Phillips Xray,
Write a method that return 1 if there is a root-to-leaf path : Write a method that returns 1 if there is a root-to-leaf path whose node values sum to target and returns 0 if there is no such root-to-leaf path.
Write the method void reverse that reverses the content : Write the method void remove (int k), member of the class ArrayQueue, that removes the first k elements (assume that k has a valid value).
Ethical person is recognizing ethical dilemmas : One of the challenges of being an ethical person is recognizing ethical dilemmas. Most dilemmas involve more than one issue.
What socialization tactic includes forms of incentives : What socialization tactic includes forms of incentives? The way in which people reason about situations is called rationalization.
Effective traits in relationship to effective management : Dominance has proven to be one of the least effective traits in relationship to effective management.

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd