作者:converse
原文链接:http://www.cppblog.com/converse/
RT。 堆的性质之类的不再这里阐述,写这个算法只为了更好的理解STL中的堆算法,如果看不懂STL中的算法也可以来参考这里给出的算法,因为是纯C的看起来会省去很多语言方面的细节。
同时里面还有一个STL中对应算法的测试以比较两者的效果。
/********************************************************************
created: 2007/3/18
filename: main.cpp
author: Lichuang
purpose: 测试模拟堆算法
*********************************************************************/
#include <algorithm>
#include <iostream>
#include <time.h>
using namespace std;
// push_heap为向堆中添加一个新的元素, 调用这个算法的前提是[First, Last)之间的元素满足堆的条件
// 新加入的元素为Last
void push_heap(int* pFirst, int* pLast);
// pop_heap为从堆中删除一个元素, 调用这个算法的前提是[First, Last)之间的元素满足堆的条件
// 被删除的元素被放置到Last - 1位置,由于这里是max-heap,所以被删除的元素是这个序列中最大的元素
void pop_heap(int* pFirst, int* pLast);
// make_heap将序列[First, Last)中的元素按照堆的性质进行重组
void make_heap(int* pFirst, int* pLast);
// 对堆进行排序, 调用这个函数可以成功排序的前提是[pFirst, pLast)中的元素符合堆的性质
void sort_heap(int* pFirst, int* pLast);
// 判断一个序列[First, Last)是否满足堆的条件,是就返回1,否则返回0
char is_heap(int* pFirst, int* pLast);
void test_heap_algo(int *pArray, int nLength);
void test_heap_algo_in_stl(int *pArray, int nLength);
void display_array(int *pArray, int nLength);
int main()
{
srand(time(NULL));
int Array[10], Array2[10];
for(int i = 0; i < 10; ++i)
Array[i] = Array2[i] = rand();
test_heap_algo(Array, sizeof(Array) / sizeof(int));
test_heap_algo_in_stl(Array2, sizeof(Array2) / sizeof(int));
return 0;
}
// 静态函数, 用于根据堆的性质调整堆
static void adjust_heap(int *pFirst, int nHoleIndex, int nLen, int nValue);
// push_heap为向堆中添加一个新的元素, 调用这个算法的前提是[First, Last)之间的元素满足堆的条件
// 新加入的元素为Last
void push_heap(int* pFirst, int* pLast)
{
int nTopIndex, nHoleIndex, nParentIndex;
int nValue;
nTopIndex = 0;
nHoleIndex = (int)(pLast - pFirst - 1);
nParentIndex = (nHoleIndex - 1) / 2;
nValue = *(pLast - 1);
// 如果需要插入的节点值比父节点大, 上溯继续查找
while (nHoleIndex > nTopIndex && pFirst[nParentIndex] < nValue)
{
pFirst[nHoleIndex] = pFirst[nParentIndex];
nHoleIndex = nParentIndex;
nParentIndex = (nHoleIndex - 1) / 2;
}
pFirst[nHoleIndex] = nValue;
}
// pop_heap为从堆中删除一个元素, 调用这个算法的前提是[First, Last)之间的元素满足堆的条件
// 被删除的元素被放置到Last - 1位置,由于这里是max-heap,所以被删除的元素是这个序列中最大的元素
void pop_heap(int* pFirst, int* pLast)
{
int nValue;
nValue = *(pLast - 1);
*(pLast - 1) = *pFirst;
adjust_heap(pFirst, 0, (int)(pLast - pFirst - 1), nValue);
}
// make_heap将序列[First, Last)中的元素按照堆的性质进行重组
void make_heap(int* pFirst, int* pLast)
{
int nLen, nParentIndex;
nLen = (int)(pLast - pFirst);
nParentIndex = (nLen - 1) / 2;
while (true)
{
// 对父节点进行调整, 把父节点的值调整到合适的位置
adjust_heap(pFirst, nParentIndex, nLen, pFirst[nParentIndex]);
if (0 == nParentIndex)
return;
nParentIndex--;
}
}
// 对堆进行排序, 调用这个函数可以成功排序的前提是[pFirst, pLast)中的元素符合堆的性质
void sort_heap(int* pFirst, int* pLast)
{
// 调用pop_heap函数, 不断的把当前序列中最大的元素放在序列的最后
while(pLast - pFirst > 1)
pop_heap(pFirst, pLast--);
}
// 判断一个序列[First, Last)是否满足堆的条件,是就返回1,否则返回0
char is_heap(int* pFirst, int* pLast)
{
int nLen, nParentIndex, nChildIndex;
nLen = (int)(pLast - pFirst);
nParentIndex = 0;
for (nChildIndex = 1; nChildIndex < nLen; ++nChildIndex)
{
if (pFirst[nParentIndex] < pFirst[nChildIndex])
return 0;
// 当nChildIndex是偶数时, 那么父节点已经和它的两个子节点进行过比较了
// 将父节点递增1
if ((nChildIndex & 1) == 0)
++nParentIndex;
}
return 1;
}
// 一个静态函数仅供adjust_heap调用以证实JJHOU的结论
static void push_heap(int *pFirst, int nHoleIndex, int nTopIndex, int nValue)
{
int nParentIndex;
nParentIndex = (nHoleIndex - 1) / 2;
while (nHoleIndex > nTopIndex && pFirst[nParentIndex] < nValue)
{
pFirst[nHoleIndex] = pFirst[nParentIndex];
nHoleIndex = nParentIndex;
nParentIndex = (nHoleIndex - 1) / 2;
}
pFirst[nHoleIndex] = nValue;
}
// 对堆进行调整, 其中nHoleIndex是目前堆中有空洞的节点索引, nLen是待调整的序列长度
// nValue是需要安插进入堆中的值
static void adjust_heap(int *pFirst, int nHoleIndex, int nLen, int nValue)
{
int nTopIndex, nSecondChildIndex;
nTopIndex = nHoleIndex;
nSecondChildIndex = 2 * nTopIndex + 2;
while (nSecondChildIndex < nLen)
{
if (pFirst[nSecondChildIndex] < pFirst[nSecondChildIndex - 1])
--nSecondChildIndex;
pFirst[nHoleIndex] = pFirst[nSecondChildIndex];
nHoleIndex = nSecondChildIndex;
nSecondChildIndex = 2 * nHoleIndex + 2;
}
if (nSecondChildIndex == nLen)
{
pFirst[nHoleIndex] = pFirst[nSecondChildIndex - 1];
nHoleIndex = nSecondChildIndex - 1;
}
// 以下两个操作在这个函数中的作用相同, 证实了<<STL源码剖析>>中P178中JJHOU所言
//pFirst[nHoleIndex] = nValue;
push_heap(pFirst, nHoleIndex, nTopIndex, nValue);
}
void test_heap_algo(int *pArray, int nLength)
{
std::cout << "\ntest_heap_algo()\n";
make_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
push_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
pop_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
if (is_heap(pArray, pArray + nLength - 1))
{
std::cout << "is heap!\n";
}
else
{
std::cout << "is not heap!\n";
}
make_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
if (is_heap(pArray, pArray + nLength))
{
std::cout << "is heap!\n";
}
else
{
std::cout << "is not heap!\n";
}
sort_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
}
void test_heap_algo_in_stl(int *pArray, int nLength)
{
std::cout << "\ntest_heap_algo_in_stl()\n";
std::make_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
std::push_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
std::pop_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
// 注意is_heap不是STL中支持的算法, 貌似只有SGI的实现才有这个函数!
if (is_heap(pArray, pArray + nLength - 1))
{
std::cout << "is heap!\n";
}
else
{
std::cout << "is not heap!\n";
}
std::make_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
if (is_heap(pArray, pArray + nLength))
{
std::cout << "is heap!\n";
}
else
{
std::cout << "is not heap!\n";
}
std::sort_heap(pArray, pArray + nLength);
display_array(pArray, nLength);
}
void display_array(int *pArray, int nLength)
{
for (int i = 0; i < nLength; ++i)
std::cout << pArray[i] << " ";
std::cout << std::endl;
}
;-)
分享到:
相关推荐
`count`算法是这一类别的一个典型代表,它接受一个范围内的元素,并返回该范围内指定值出现的次数。 2. **修改型序列算法**:与第一类不同,这类算法会直接修改序列中的元素。包括`sort`排序算法,`reverse`反转...
在"仿STL中的数据结构C++"项目中,可能包含了类似STL容器的实现,比如自定义的向量、列表、集合等。这些实现可以帮助我们理解STL内部如何管理内存、如何实现高效的插入和删除操作,以及如何维护数据的有序性。通过...
STL,全称为Standard Template Library,是C++标准库中的一个重要组成部分,它提供了一系列高效、通用的容器、迭代器、算法等模板类和函数模板,极大地提升了C++程序员的开发效率。STL的核心思想是泛型编程,允许...
STL(Standard Template Library,标准模板库)是C++编程语言中的一个重要组成部分,它提供了大量高效、可重用的容器、算法和迭代器。在STL中,排序算法是经常被使用的工具,可以帮助我们对数据进行有效管理和分析。...
- **copy()**:将一个范围内的元素复制到另一个位置。 - **swap()**:交换两个对象或容器的内容。 - **unique()**:删除容器内的连续重复元素。 4. **函数对象(Functors)**:也称为仿函数,是具有函数调用操作...
这个压缩包“SGI-STL-.rar_STL_sgi stl”包含了SGI(Silicon Graphics, Inc.)版本的STL源码,这是一个经典的STL实现,对深入理解STL的内部工作原理非常有帮助。STL由Alexander Stepanov和Menas C. Kafatos在1985年...
STL,全称为Standard Template Library,是C++编程语言中的一个重要组成部分,它提供了一组高效、灵活且可重用的容器、迭代器、算法和函数对象,大大提升了C++程序员的开发效率。STL的核心思想是泛型编程,即代码的...
函数对象,又称仿函数,是STL中实现自定义操作的关键。它们是类模板,行为类似于函数,可以作为算法的参数,从而实现定制化的比较、转换等操作。比如,我们可以创建一个自定义的比较函数对象来改变排序的依据。 STL...
STL中的一些算法需要一个比较或操作函数,函数对象可以作为这些函数的参数,如less用于排序时的比较,加法运算符(+)可以被用作仿函数进行元素间的操作。 5. 配适器(Adapters): 配适器类可以改变现有容器或函数...
STL是一个标准模板库,它为C++程序员提供了高效、可重用和类型安全的数据结构和算法,极大地提升了C++的编程效率和代码质量。 SGI-STL的核心组件包括以下几个部分: 1. 容器:容器是STL的基础,它们可以存储和管理...
STL,全称为Standard Template Library(标准模板库),是C++编程语言中一个重要的组成部分,由亚历山大·斯蒂尔(Alexander Stepanov)及其团队开发,并在C++标准库中得以广泛应用。STL提供了高效且灵活的数据结构...
STL的主要组件包括容器、迭代器、算法和函数对象,这些组件共同构成了一个强大的工具集,极大地提高了程序员的生产力。 一、容器 STL中的容器是用来存储数据的类模板,例如: 1. **向量(Vector)**:动态数组,支持...
C++标准模板库(Standard Template Library,STL)是C++编程中不可或缺的一部分,它提供了高效且灵活的数据结构和算法。STL的实现有多种,其中SGI(Stanford Graphics Interface)版本以其优秀的代码质量和广泛的...
在C++编程中,标准模板库(Standard Template Library,简称STL)是一个极其重要的组成部分,它为程序员提供了高效且易用的数据结构和算法。STL是C++标准库的一个核心部分,极大地提升了代码的可读性和复用性,使得...
7. **优先队列和堆**: `priority_queue`是一个基于堆的数据结构,提供了O(log n)的插入和删除操作。理解堆的概念和其在优先级队列中的实现,有助于解决复杂问题。 8. **适配器容器**: 例如`stack`、`queue`、`deque...
例如,可以使用`priority_queue`实现堆,`stack`和`queue`作为后进先出(LIFO)和先进先出(FIFO)的数据结构,利用STL的容器和算法实现图的遍历和搜索等。 综上所述,"Data-structure-STL.rar"这个压缩包可能包含...
标准模板库(Standard Template Library,STL)是C++编程语言中的一个重要组成部分,它提供了一组高效、可重用的数据结构和算法。STL的出现极大地提高了C++程序员的开发效率,让代码更加简洁且易于维护。在STL中,...
STL(Standard Template Library,标准模板库)是C++编程语言中的一个重要组成部分,它提供了一系列高效、可重用的数据结构和算法。STL的核心概念包括容器、迭代器、算法和函数对象,这些组件使得程序员能够方便地...
STL(Standard Template Library,标准模板库)是C++编程语言中的一个重要组成部分,它提供了一系列高效、可重用的数据结构和算法。在ACM(国际大学生程序设计竞赛)中,熟悉并灵活运用STL能够极大地提升解决问题的...