Wie zeichnet man einen Baum repräsentieren ein Diagramm der angeschlossenen Knoten?

Ich anzeigen möchten, einen Baum in ein Java-GUI, aber ich weiß nicht wie. Der Baum stellt ein Diagramm der angeschlossenen Knoten, wie diese:

Wie zeichnet man einen Baum repräsentieren ein Diagramm der angeschlossenen Knoten?

Soll ich sagen, ich habe meine eigene tree Klasse:

public class BinaryTree  
{
private BinaryNode root;
public BinaryTree( )
{
    root = null;
}

public BinaryTree( Object rootItem )
{
    root = new BinaryNode( rootItem, null, null );
}

public BinaryTree( Object rootItem,BinaryNode a,BinaryNode b )
{
    root = new BinaryNode( rootItem, a, b );
}

public int leavesCount(){
    return BinaryNode.leavesCount(root);
}

public boolean equal(BinaryTree a,BinaryTree b){
    return BinaryNode.equal(a.root, b.root);

}

public void printPreOrder( )
{
    if( root != null )
        root.printPreOrder( );
}

public void printInOrder( )
{
    if( root != null )
       root.printInOrder( );
}

public void printPostOrder( )
{
    if( root != null )
       root.printPostOrder( );
}

public void makeEmpty( )
{
    root = null;
}


public boolean isEmpty( )
{
    return root == null;
}


public void merge( Object rootItem, BinaryTree t1, BinaryTree t2 ) throws MergeAbrot
{
    if( t1.root == t2.root && t1.root != null )
    {
         throw new MergeAbrot("MergeAbrot");

    }

     root=new BinaryNode( rootItem, t1.root, t2.root );

    if( this != t1 )
        t1.root = null;
    if( this != t2 )
       t2.root = null;
}

public int size( )
{
    return BinaryNode.size( root );
}

public int height( )
{
    return BinaryNode.height( root );
}

}

Ich nur zeichnen möchten, der Baum. Wie sollte ich das tun?

InformationsquelleAutor Oli | 2012-04-12

Schreibe einen Kommentar