摘要: #include #include #include #include using namespace std; vector in, pre; struct Node { int data; struct Node* left, *right; Node() { left = NULL; right = NULL; ... 阅读全文
posted @ 2017-08-28 17:05 diamondDemand 阅读(200) 评论(0) 推荐(0)