洛谷P1030
思路:
- 由后序遍历序列求出根
- 由中序遍历序列求出左右子树
- 递归上述1 2 直到中序/后续遍历序列为空
public class P1030 {// 已AC
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String s1 = scanner.nextLine();// 中序序列
String s2 = scanner.nextLine();// 后序序列
dfs(s1, s2);
}
/**
* @param s1 先序遍历序列
* @param s2 后序遍历序列
*/
private static void dfs(String s1, String s2) {
if (s1.length() > 0) {
char root = s2.charAt(s2.length() - 1);
int rootIndex = s1.indexOf(root);
System.out.print(root);
dfs(s1.substring(0, rootIndex), s2.substring(0, rootIndex));
dfs(s1.substring(rootIndex + 1), s2.substring(rootIndex, s2.length() - 1));
}
}
}
此题所涉及的工具 str.substring(0, 10); 需要注意,截取的字符中不含有下标为10的字符,字符截取范围为(0,9)