堆的基本操作
一直都想了解堆
学习来自这篇
http://www.cnblogs.com/JVxie/p/4859889.html
#include<stdio.h> #include<string.h> #include<algorithm> using namespace std; #define MAXN 100010 struct Heap //小顶堆 { int Size; int z[MAXN]; void push(int a) { z[++Size]=a; shift_up(Size); } void shift_up(int a) //上浮 { while(a>1) { if(z[a>>1]>z[a]) swap(z[a>>1],z[a]); a=a>>1; } } void shift_down(int a) { while((a<<1)<=Size) { int b=a<<1; if(b<Size&&z[b]>z[b+1]) b++; if(z[a]>z[b]) { swap(z[a],z[b]); a=b; } else return ; } } void pop() //弹出栈顶 { swap(z[1],z[Size]); Size--; shift_down(1); } bool empty() { return Size?0:1; } int top() { return z[1]; } }; int main() { Heap Q; memset(Q.z,0,sizeof(Q.z)); Q.Size=0; int n; scanf("%d",&n); /* 5 2 3 4 1 6 */ for(int i=1;i<=n;i++) { int a; scanf("%d",&a); Q.push(a); } for(int i=1;i<=6;i++) { if(!Q.empty()) //每个都弹出堆就是堆排序 { int a=Q.top(); printf("%d ",a); Q.pop(); } else printf("no\n"); } printf("\n"); return 0; }
posted on 2016-12-07 19:56 HelloWorld!--By-MJY 阅读(245) 评论(0) 编辑 收藏 举报