1147 Heaps (30 分)
#include<bits/stdc++.h>
using namespace std;
const int MAXN=1003;
struct Node{
int data;
Node* left;
Node* right;
};
vector<int> pos,temp;
int m,n;
int flag=0;
void postra(Node* root){...
原创
2018-10-17 22:00:58 ·
211 阅读 ·
0 评论