A binary tree question(java)

  • Java
  • Thread starter transgalactic
  • Start date
  • Tags
    Binary Tree
In summary, the tree node class has a recursivemethod to calculate the height difference between two nodes.
  • #1
transgalactic
1,395
0
there is a given binary tree
each of member are of a Node type
Code:
class Node {
int info;
Node left;
Node right;
}

in the info part of each node we have a number.
in each one of his leaves we have some number
and in each one of its roots (crossroads) we have zeros.

my gole is to build a method which calculates the difference between the
sums of the leaves in the right subtree of T
and the sum of the leaves in the left subtree of T
 
Technology news on Phys.org
  • #2
just visit all nodes in left sub-tree, if both Node.left && Node.right == null, increase the number of leaves.
Then visit right-subtree and do the same.
 
  • #3
what do you meen increase the number of leaves
i need to count them i can't add another object
 
  • #4
Hi Ho!

A recursive algorithm will nicely solve this.
The idea is that we know that the base case will be when a node is a leaf. In this case the height difference will be just 0.
If it is not a base case, simply solve the problem recursively by traversing the left child and the right child.

Here is the code if you do not want to think about how to implement such a solution.

Code:
int calculate_height_difference (Node node)
{
    if (node.left == null && node.right == null)
    {
        return 0;
    }

    return calculate_height_difference (node.right) - calculate_height_difference (node.left);
}


Eus
 
Last edited:
  • #5
I meant increase the number of leaves VISTIED.
 
  • #6
comment

>> what do you meen increase the number of leaves

It means you have reached a leave, so count it by increasing the leaf_count
 
  • #7
yes but a recrusive method is better.

If your classes are:

class TreeNode{

Object data;
TreeNode left;
TreeNode right;

constructor...

}


class Tree{

TreeNode head;

.. other methods..

----------------

So you first have a general method like:

diffLeftRight(){

return Math.abs(numberOfLeaves(head.left) - numberOfLeaves(head.right);

}


numberOfLeaves(TreeNode tr){

if(tr == null)
return 0;
else if(tr.left == null && tr.right == null)
return 1;
else if(tr.left == null && tr.right != null)
return numberOfLeaves(tr.left);
else if(tr.left != null && tr.right == null)
return numberOfLeaves(tr.right);
else
return numberOfLeaves(tr.left) + numberOfLeaves(tr.right);

}

Maybe you need to modify it a bit, but this is the general idea of recursion
}
 

1. What is a binary tree?

A binary tree is a data structure that consists of nodes connected by edges. Each node has at most two child nodes, typically referred to as the left child and right child. These child nodes can also be binary trees themselves, making the structure recursive.

2. How is a binary tree different from other types of trees?

A binary tree differs from other types of trees, such as a general tree or a binary search tree, in the number of child nodes each node can have. In a binary tree, each node can have a maximum of two child nodes, whereas other types of trees do not have this restriction.

3. How do I traverse a binary tree?

There are three common ways to traverse a binary tree: in-order, pre-order, and post-order. In-order traversal means visiting the left subtree, then the root, and finally the right subtree. Pre-order traversal means visiting the root, then the left subtree, and finally the right subtree. Post-order traversal means visiting the left subtree, then the right subtree, and finally the root.

4. What is the time complexity of operations on a binary tree?

The time complexity of operations on a binary tree depends on the type of operation. For example, searching for a specific value in a binary tree would have an average time complexity of O(log n), where n is the number of nodes in the tree. Insertion and deletion operations can have a time complexity of O(log n) in a balanced binary tree, but can be O(n) in a worst-case scenario.

5. Can a binary tree be empty?

Yes, a binary tree can be empty, meaning it has no nodes. This can happen if no nodes have been added yet or if all nodes have been removed from the tree. In this case, the root node does not exist and there are no child nodes.

Similar threads

  • Programming and Computer Science
Replies
3
Views
3K
  • Programming and Computer Science
Replies
14
Views
3K
  • Programming and Computer Science
Replies
20
Views
4K
  • Programming and Computer Science
Replies
3
Views
2K
  • Programming and Computer Science
Replies
7
Views
2K
  • Programming and Computer Science
Replies
9
Views
2K
  • Programming and Computer Science
Replies
1
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
6
Views
855
  • Programming and Computer Science
Replies
1
Views
1K
  • Programming and Computer Science
Replies
1
Views
2K
Back
Top