91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++實現堆

發布時間:2020-07-03 16:38:43 來源:網絡 閱讀:451 作者:zgw285763054 欄目:編程語言
#include <iostream>
using namespace std;
#include <vector>
#include <assert.h>

//仿函數
template<class T>
struct Less
{
	bool operator()(const T& left, const T& right)
	{
		return left < right;
	}
};

template<class T>
struct Greater
{
	bool operator()(const T& left, const T& right)
	{
		return left > right;
	}
};

template<class T, class Compare = Less<T>>//默認為小堆
class Heap
{
public:
	Heap()
	{}

	Heap(const T* array, size_t size)
	{
		for (size_t i = 0; i < size; ++i)
		{
			_a.push_back(array[i]);
		}

		for (int i = (_a.size()-2)/2; i >= 0; --i)
		{
			_AdjustDown(i);
		}
	}

	void Push(const T& x)
	{
		_a.push_back(x);

		_AdjustUp(_a.size()-1);
	}

	void Pop()
	{
		assert(!_a.empty());

		swap(_a[0], _a[_a.size()-1]);
		_a.pop_back();
		_AdjustDown(0);
	}

	T& GetTop()
	{
		assert(!_a.empty());

		return _a[0];
	}

	bool Empty()
	{
		return _a.empty();
	}

	size_t Size()
	{
		return _a.size();
	}

	void Print()
	{
		for (size_t i = 0; i < _a.size(); ++i)
		{
			cout<<_a[i]<<" ";
		}
		
		cout<<endl;
	}

protected:
	//向下調整
	void _AdjustDown(size_t parent)
	{
		Compare compare;
		size_t child = parent*2 + 1;

		while (child < _a.size())
		{
			//比較左右孩子
			if (child+1 < _a.size() 
				&& compare(_a[child+1], _a[child]))
			{
				++child;
			}

			if (compare(_a[child], _a[parent]))
			{
				swap(_a[child], _a[parent]);

				parent = child;
				child = parent*2 + 1;
			}
			else
			{
				break;
			}
		}
	}

	//向上調整
	void _AdjustUp(size_t child)
	{
		Compare compare;
		size_t parent = (child-1)/2;
		
		while (child > 0)
		{
			if (compare(_a[child], _a[parent]))
			{
				swap(_a[parent], _a[child]);

				child = parent;
				parent = (child-1)/2;
			}
			else
			{
				break;
			}
		}
	}

protected:
	vector<T> _a;
};


void Test()
{
	int a[10] = {10, 11, 13, 12, 16, 18, 15, 17, 14, 19};
	Heap<int, Greater<int>> hp1(a, sizeof(a)/sizeof(a[0]));
	hp1.Print();
	cout<<"size:"<<hp1.Size()<<endl;
	cout<<"top:"<<hp1.GetTop()<<endl;
	cout<<"empty:"<<hp1.Empty()<<endl;
}

int main()
{
	Test();

	return 0;
}

C++實現堆

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

苍梧县| 连平县| 津市市| 板桥市| 博兴县| 淮安市| 手游| 弥渡县| 松滋市| 平江县| 休宁县| 凤庆县| 西丰县| 武宣县| 原平市| 万载县| 达州市| 广宗县| 福安市| 泸西县| 宜宾市| 美姑县| 佛坪县| 昌都县| 同心县| 湘西| 区。| 聂拉木县| 介休市| 多伦县| 景东| 华蓥市| 阳东县| 长宁区| 安国市| 新和县| 九寨沟县| 诸暨市| 理塘县| 新沂市| 丰原市|