满二叉树 已知前序 求其后序
摘要:
#include<bits/stdc++.h> #define int long long #define endl '\n' using namespace std; void build(string s, int l1, int r1) { char root = s[l1];//暂存当前的根 阅读全文
posted @ 2024-11-07 23:00 swj2529411658 阅读(2) 评论(0) 推荐(0) 编辑