博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
堆排序
阅读量:6438 次
发布时间:2019-06-23

本文共 1186 字,大约阅读时间需要 3 分钟。

void InsertHeap(vector<int>& heap, int node)

{
  heap.push_back(node);
  int index = heap.size()/2-1;
  int index_s = heap.size()-1;
  while (index_s > 0 && heap[index] > heap[index_s])
  {
    int t = heap[index_s];
    heap[index_s] = heap[index];
    heap[index] = t;
    index_s = index;
    index = (index_s-1)/2;
  }
}

int PopHeap(vector<int>& heap)

{
  int result = heap[0];
  heap[0] = heap[heap.size()-1];
  heap.pop_back();
  int index = 0;
  int index_s = (index+1)*2-1;
  while (index_s < heap.size())
  {
    if (index_s != heap.size() - 1)
    {
      if (heap[index]<heap[index_s] && heap[index]<heap[index_s+1])
        break;
      else if (heap[index_s] > heap[index_s+1])
        index_s++;
    }
    else if (heap[index]<heap[index_s])
      break;
    int t = heap[index_s];
    heap[index_s] = heap[index];
    heap[index] = t;
    index = index_s;
    index_s = (index+1)*2-1;
  }
  return result;
}

void main()

{
  const int k[10] = {5, 3, 7, 8, 1, 2, 0, 9, 6, 4};
  vector<int> heap;
  for (int i=0;i<10;i++)
    InsertHeap(heap, k[i]);
  while (!heap.empty())
    cout << PopHeap(heap) << endl;
  cin.get();
}

转载于:https://www.cnblogs.com/RoyCNNK/p/3351404.html

你可能感兴趣的文章
UWP开发中两种网络图片缓存方法
查看>>
超8千Star,火遍Github的Python反直觉案例集!
查看>>
【msdn wpf forum翻译】如何在wpf程序(程序激活时)中捕获所有的键盘输入,而不管哪个元素获得焦点?...
查看>>
全球首家!阿里云获GNTC2018 网络创新大奖 成唯一获奖云服务商
查看>>
Python简单HttpServer
查看>>
Java LinkedList工作原理及实现
查看>>
负载均衡SLB的基本使用
查看>>
Centos 7 x86 安装JDK
查看>>
微信小程序的组件用法与传统HTML5标签的区别
查看>>
Hangfire 使用笔记
查看>>
(C#)Windows Shell 外壳编程系列8 - 同后缀名不同图标?
查看>>
教你彻底学会c语言基础——文件操作
查看>>
如何使用免费控件将Word表格中的数据导入到Excel中
查看>>
seafile服务器配置
查看>>
HyperLedger Fabric 1.2 区块链应用场景(3.1)
查看>>
也谈谈初创公司的技术团队建设
查看>>
阿里云 APM 解决方案地图
查看>>
中国HBase技术社区第一届MeetUp-HBase2.0研讨圆桌会
查看>>
学渣的模块化之路——50行代码带你手写一个common.js规范
查看>>
python——变量
查看>>