Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Write a program to create a binary Tree ?

Answer Posted / marshal

public class BinaryTree
extends AbstractTree
{
protected Object key;
protected BinaryTree left;
protected BinaryTree right;

public BinaryTree (
Object key, BinaryTree left, BinaryTree right)
{
this.key = key;
this.left = left;
this.right = right;
}

public BinaryTree ()
{ this (null, null, null); }

public BinaryTree (Object key)
{ this (key, new BinaryTree (), new BinaryTree()); }
// ...
}

Is This Answer Correct ?    7 Yes 12 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are scalar data types?

1059


Write a method that will remove given character from the string?

1023


Which class cannot be a subclass in java?

1015


What is the meaning of flag day?

1019


Explain purpose of sleep() method in java?

1115


How do you add an element to an arraylist in java?

942


What is the difference amongst jvm spec, jvm implementation, jvm runtime ?

963


Is java pass by value or pass by reference?

982


What is set string?

1173


Explain the polymorphism principle?

1006


Is node a data type in java?

997


What is an argument in java?

934


what state does a thread enter when it terminates its processing? : Java thread

1047


Explain how to convert any java object into byte array.

970


Which class is the superclass for every class in java programming?

992