我正在尝试创建一个动画BTree的Java小程序。我有创建树的代码,但是现在我试图显示它。我以为最简单的方法是按级别打印,但是我不知道怎么做。下面的代码是我的节点的构造函数。另外,如果有人对显示我的树有更好的建议,我将不胜感激。

    /***********************************************************************
 * Class BTNode
 * The BTNode is nothing else than a Node in the BTree. This nodes can be
 * greater or smaller it depends on the users order.
 **/

class BTNode {
    int order=0;
    int nKey=0;         // number of keys stored in node
    KeyNode kArray[];       // array where keys are stored
    BTNode btnArray[];  // array where references to the next BTNodes is stored
    boolean isLeaf;     // is the btnode a leaf
    BTNode parent;      // link to the parent node

    /**
       * BTNode(int order, BTNode parent);
       * Constructor, creats a empty node with the given order and parent
       **/
    BTNode(int order, BTNode parent) {
        this.order = order;
        this.parent = parent;
        kArray = new KeyNode[2 * order - 1];
        btnArray = new BTNode[2 * order];
        isLeaf = true;
    }

最佳答案

您要执行树的级别顺序遍历。如果空间不是一个限制因素,我建议您建立一个您想接下来访问的节点队列(在访问时将其子节点添加到队列的末尾)。

关于java - 按级别打印BTree,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5890960/

10-12 23:25