0_0_39833195_5233\Main.java:14: 错误: 类BinaryTreeTraversal是公共的, 应在名为 BinaryTreeTraversal.java 的文件中声明
public class BinaryTreeTraversal {
^
0_0_39833195_5233\Main.java:25: 错误: 找不到符号
int n = pre.size(); // 获取节点的数量
^
符号: 方法 size()
位置: 类型为List<Integer>[]的变量 pre
0_0_39833195_5233\Main.java:29: 错误: 不兼容的类型: List<Integer>无法转换为Integer
inorderMap.put(in[i], i);
^
0_0_39833195_5233\Main.java:43: 错误: 不兼容的类型: List<Integer>无法转换为int
TreeNode node = new TreeNode(pre[preIndex++]); // 创建新节点并增加先序遍历索引
^
注: 0_0_39833195_5233\Main.java使用了未经检查或不安全的操作。
注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。
注: 某些消息已经过简化; 请使用 -Xdiags:verbose 重新编译以获得完整输出
4 个错误
|