3

如何在这种树上实现 InOrder 遍历?我也需要打印运算符(如 3-2-1)。

我有这些课程:

public class BinaryOperator extends Value {
    private Value firstOperand;
    private Value secondOperand;
    private String operator;

    public BinaryOperator(Value firstOperand, Value secondOperand,
            String operator) {
        this.firstOperand = firstOperand;
        this.secondOperand = secondOperand;
        this.operator = operator;
    }
}

public class Number extends Value {
    private Integer value;

    public Number(Integer value) {
        this.value = value;
    }
}

Tree

        Root
         /\
        /  \
       BO  Num
       /\
      /  \
    BO OP Num
    /\
   /  \
Num OP Num

explanation:
- BO: binary operator - consists of two children which may be Num or another BO
- Num: just a number
- OP: operation like +-... 
4

1 回答 1

3

实现这一点的规范方法是简单地在树上递归。
您将首先递归遍历左侧子树,然后打印运算符,然后递归遍历右侧子树。

更高级的实现是使用 Iterator 和 Visitor 设计模式,但由于这是一个家庭作业问题,我认为这超出了您的任务范围。

于 2011-10-31T09:48:26.247 回答