DFS遍历这棵树 要注意的是DFS的写法 不要写错了
#include<bits/stdc++.h>
using namespace std;
const int MAXN = 1100;
int n,num;
int a[MAXN];
bool ismaxHeap(int u)
{
queue<int> q;
q.push(u);
while(!q.empty())
{
int s = q.front();
q.pop();
if(s * 2 <= num)
{
if(a[s] < a[s * 2])
{
return false;
}
else
{
q.push(s * 2);
}
}
if(s * 2 + 1 <= num)
{
if(a[s] < a[s * 2 + 1])
{
return false;
}
else
{
q.push(s * 2 + 1);
}
}
}
return true;
}
bool isminHeap(int u)
{
queue<int> q;
q.push(u);
while(!q.empty())
{
int s = q.front();
q.pop();
if(s * 2 <= num)
{
if(a[s] > a[s * 2])
{
return false;
}
else
{
q.push(s * 2);
}
}
if(s * 2 + 1 <= num)
{
if(a[s] > a[s * 2 + 1])
{
return false;
}
else
{
q.push(s * 2 + 1);
}
}
}
return true;
}
vector<int> path;
void DFS(int u)
{
// cout<<num<<endl;
path.push_back(a[u]);
if(2 * u > num)
{
for(int i = 0;i<path.size();i++)
{
if(i == 0)
{
printf("%d",path[i]);
}
else
{
printf(" %d",path[i]);
}
}
printf("\n");
return ;
}
if(2 * u + 1 <= num)
{
DFS(u * 2 + 1);
path.pop_back();
}
if(2 * u <= num)
{
DFS(2 * u);
path.pop_back();
}
}
int main(void)
{
freopen("pat0314/in.txt","r",stdin);
cin>>num;
for(int i = 1;i<=num;i++)
{
cin>>a[i];
}
DFS(1);
if(isminHeap(1))
{
printf("Min Heap\n");
}
else if(ismaxHeap(1))
{
printf("Max Heap\n");
}
else
{
printf("Not Heap\n");
}
return 0;
}