0

我目前正在研究一些数据结构,并且遇到了一些存储在二叉树中的数据,但我并不完全确定解析它的最佳方式。

本质上,数据是这样存储的:

Structure 1: 
  LeftChild: 0xaddress
    Structure 2: 
      LeftChild: 0xaddress
        Structure 3:
         LeftChild: 0xaddress
          ........
         RightChild: 0xaddress
          Structure 4:
            LeftChild: 0xaddress
            RightChild: 0xaddress
      RightChild: 0xaddress
  RightChild: 0xaddress

现在显然很难对二叉树进行文本解释,所以希望我上面的糟糕尝试能解释一下。本质上,这一切都是从一个结构开始的,它有一个左右树条目,每个条目都有左右,最终其中一个会用完节点,然后树的下一个分支继续。

我不完全确定解决这个问题的最佳方法。

我的第一个想法是通过使用 while 循环来继续追逐树节点,但这似乎有点让人头疼。

我知道 Java 有二叉树实现,但我不知道是否可以将它们用于此类工作。我从来没有尝试过使用它们,所以我可能是错的。

如果有人对如何解决这个问题有任何建议或建议,我将不胜感激。

谢谢!

4

4 回答 4

2

一个建议:如果你的树太深,你应该避免基于递归的解决方案。那是因为您可能会遇到堆栈溢出问题。

为了处理这种情况,您可以使用堆栈。

下面的伪代码不递归地遍历所有二叉树节点。

visitNodes(root) 
    add the root on the stack

    while the stack is not empty
        nodeToBeProcessed <- pop the top node from the stack

        process nodeToBeProcessed

        if nodeToBeProcessed has a left child
            add the left child on the stack

        if nodeToBeprocessed has a right child
            add the right child on the stack

注意:该pop操作返回并从堆栈中删除顶部节点。

注意 2:如果深度不是问题,基于递归的解决方案通常更简单。

于 2013-08-06T19:19:24.800 回答
1

递归是以某种伪代码形式执行此操作的传统方式:

Node { // data
    Node leftChild;
    Node rightChild;
}

handleNode(Node node) {
    if (node is missing or null or blank)
        return;
    ... handle anything on the node
    handleNode(node.leftChild);
    handleNode(node.rightChild);
}
于 2013-08-06T18:06:10.503 回答
1

如果我理解正确,您的问题是从具有该格式的文件中读取信息,而不是在解析后遍历树。您应该创建节点并跟踪谁是使用堆栈的兄弟姐妹,您可以获得构建节点的方法。

Stack<String> stack = new Stack<String>();
try {
    BufferedReader in = new BufferedReader(new FileReader("yourfile.txt"));
    String str;
    while ((str = in.readLine()) != null)
    {

        if(str.contains("Structure"))
        {
            stack.push(str);
        }else
        {
            if(str.contains("Left"))
            {
                stack.push(str);
            }
            if(str.contains("Right"))
            {
                System.out.println(stack.pop());    
                System.out.println(str);
                System.out.println(stack.pop());
            }
        }
    }
    in.close();
} catch (IOException e) {
    e.printStackTrace();
}

使用您的示例,此代码将打印:

         LeftChild: 0xaddress
         RightChild: 0xaddress
        Structure 3:
            LeftChild: 0xaddress
            RightChild: 0xaddress
          Structure 4:
      LeftChild: 0xaddress
      RightChild: 0xaddress
    Structure 2: 
  LeftChild: 0xaddress
  RightChild: 0xaddress
Structure 1: 

您可以使用它来构建节点。希望能帮助到你。

于 2013-08-06T19:53:51.447 回答
0

我不确定你是如何实现 yoru 的,但试试这个(你需要做一些明显的名称更改):

//list to put all data into
private static ArrayList<String> list = new ArrayList<String>();

//recursive way to search binary tree
public void binaryTreeSearchAndParse(Node root)
{
    //does it exist?
    if(root != null)
    {
        list.add(root.getData());
        binaryTreeSearchAndParse(root.getLeft());
        binaryTreeSearchAndParse(root.getRight());
        //you may or may not need this depending on how you implemented your tree
        //binaryTreeSearchAndParse(root.getNextStructure());
    }    
}

public static void main(String[] args)
{

   //get tree
   //pass in root of tree
   binaryTreeSearchAndParse(tree.getRoot());

    //now all data should be added in the global ArrayList
    for(int i = 0; i<list.size(); i++)
    {
         System.out.println(list.get(i));
    }
}

如果我知道你是如何实现你的树的,我可以为你提供更多帮助。

这是一个递归解决方案。如果你想要一个迭代解决方案,你应该使用一个队列:

具有父节点的二叉搜索树级顺序

于 2013-08-06T18:42:25.450 回答