仿STL中的堆算法的一个实现
作者 佚名技术
来源 程序设计
浏览
发布时间 2012-06-29
le (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)) { |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 屈蛍臥孀麻隈(亨旗才弓拷井云)下一篇: C++中关于左值和右值的讨论
关于仿STL中的堆算法的一个实现的所有评论