show/hide this revision's text 4 reverted to first draft; deleted 27 characters in body; edited title; [made Community Wiki]

Algorithm to return length of shortest branch in a binary treequestionss

sorry nevermind

sorry people delete if u want

A binary tree can be encoded using two functions l and r such that for a node n, l(n) give the left child of n , r(n) give the right child of n.

A branch of a tree is a path from the root to a leaf, the length of a branch to a particular leaf is the number of arcs on the path from the root to that leaf.

Let MinBranch(l,r,x) be a simple recursive algorithm for taking a binary tree encoded by the l and r functions together with the root node x for the binary tree and returns the shortest branch of the binary tree.

Please provide the pseudocode for this algorithm.

show/hide this revision's text 3 added 3 characters in body; edited title

binary tree questionquestionss

sorry nevermindreally

sorry people delete if u want

show/hide this revision's text 2 deleted 507 characters in body; edited tags; edited title; edited title; deleted 50 characters in body

Please help : Pseudocode to return length of shortest branch in a binary tree question

A binary tree can be encoded using two functions l and r such that for a node n, l(n) give the left child of n , r(n) give the right child of n.

A branch of a tree is a path from the root to a leaf, the length of a branch to a particular leaf is the number of arcs on the path from the root to that leaf.

Let MinBranch(l,r,x) be a simple recursive algorithm for taking a binary tree encoded by the l and r functions together with the root node x for the binary tree andreturns the shortest branch of the binary tree.

Give the pseudocode for this algorithm.

Please help me with this quetion?

sorry nevermind really sorry delete if u want

show/hide this revision's text 1