数据结构——优先级队列(主要是堆)

本文介绍了大根堆的概念,它作为完全二叉树的一种特殊形式,便于用数组表示。文章详细阐述了大根堆的插入、删除和初始化操作,分析了它们的时间复杂度,并探讨了大根堆在堆排序中的应用,揭示了堆排序的时间效率为O(nlogn)。
摘要由CSDN通过智能技术生成
chapter12 优先级队列, priority queue
  在优先级队列中,元素出队列的顺序由元素的优先级决定。
  堆是实现优先级队列效率很高的数据结构——堆,是一棵完全二叉树,用数组表示:1,1左2,1右3,2左4,2右5,3左6,3右7.
12.1 定义和应用
  优先级队列是0个或多个元素的集合,每个元素都有一个优先权或值。top查找,push插入,pop删除。在最小优先级队列(min priority queue)中,查找和删除的元素都是优先级最小的元素;max priority queue中相反。优先级队列的元素可以有相同的优先级,对这样的元素,查找和删除可以按任意数序处理。
12.2 抽象数据类型(Abstract Data Type, ADT)
  template<class T>
  class maxPriorityQueue
  {
   public:
    virtual ~maxPriorityQueue(){}
    virtual bool empty() const = 0; //return true, when the queue is empty.
    virtual int size() const = 0;   //return the number of elements in the queue.
    virtual const T& top() = 0;     //return the reference of element with the biggest priority.
    virtual void pop() = 0;         //delete the head element of the queue.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值