摘要: #include using namespace std; const int maxn = 100000+5; int heap[maxn],_size; void put(int k){ heap[++_size]=k; int now=_size; while(now>1){ int nxt = now >> 1; if(heap[... 阅读全文
posted @ 2018-01-30 18:16 Ed_Sheeran 阅读(97) 评论(0) 推荐(0)