c++哈希堆的实现
作者:互联网
#include <iostream>
#include <utility>
#include <string>
#include <cstring>
#include <vector>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <unordered_map>
#include <unordered_set>
#include <algorithm>
#include <numeric>
using namespace std;
const int MAX_N = 1024;
int heap[MAX_N];
int tail = 0;
unordered_map<int, int> hash_map;
void push(int v) {
int idx = tail++;
while (idx > 0) {
int p = (idx - 1) / 2;
if (heap[p] <= v) {
break;
}
heap[idx] = heap[p];
hash_map[heap[idx]] = idx;
idx = p;
}
heap[idx] = v;
hash_map[heap[idx]] = idx;
}
int top() {
return heap[0];
}
void pop(int p = 0) {
int res = heap[p];
int v = heap[--tail];
int newp = p;
while (newp * 2 + 1 < tail) {
int mm = newp * 2 + 1, ma = mm + 1;
if (ma < tail && heap[ma] < heap[mm]) {
mm = ma;
}
if (heap[mm] > v) {
break;
}
heap[newp] = heap[mm];
hash_map[heap[newp]] = newp;
newp = mm;
}
heap[newp] = v;
hash_map[heap[newp]] = newp;
heap[tail] = 0;
hash_map.erase(res);
}
void hash_pop(int v) {
int idx = hash_map[v];
pop(idx);
}
int main() {
for (int i = 0; i < 6; i++) {
push(i);
}
hash_pop(4);
cout << heap[0];
}
标签:hash,哈希,idx,实现,c++,int,heap,newp,include 来源: https://blog.csdn.net/qq_34179431/article/details/117966242