摘要: 根据后序中序重构二叉树,并输出层次遍历模板 1 /**\ 2 input: 3 7 4 2 3 1 5 7 6 4 5 1 2 3 4 5 6 7 6 7 output: 8 4 1 6 3 5 7 2 9 \**/ 10 #include <bits/stdc++.h> 11 12 using n 阅读全文
posted @ 2022-02-19 10:09 std&ice 阅读(71) 评论(0) 推荐(0) 编辑