?? maxheap.cpp
字號:
// test max heap
#include <iostream>
#include "maxHeap.h"
using namespace std;
int main(void)
{
// test constructor and push
maxHeap<int> h(4);
h.push(10);
h.push(20);
h.push(5);
cout << "Heap size is " << h.size() << endl;
cout << "Elements in array order are" << endl;
cout << h << endl;
h.push(15);
h.push(30);
cout << "Heap size is " << h.size() << endl;
cout << "Elements in array order are" << endl;
cout << h << endl;
// test top and pop
cout << "The max element is " << h.top() << endl;
h.pop();
cout << "The max element is " << h.top() << endl;
h.pop();
cout << "The max element is " << h.top() << endl;
h.pop();
cout << "Heap size is " << h.size() << endl;
cout << "Elements in array order are" << endl;
cout << h << endl;
// test initialize
int z[10];
for (int i = 1; i < 10; i++)
z[i] = i;
h.initialize(z, 9);
cout << "Elements in array order are" << endl;
cout << h << endl;
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -