数据结构 - 堆

2020/10/04

什么是堆?

todo

堆在生活中的应用

todo

实现一个二叉堆

下边来完成一次手动模拟, 步骤如下所示:

             insert(4);
             insert(10);
             insert(15);
              /   \
            /       \
      remove();      insert(0);
  1. 第一步,向一棵空树中插入值为4的结点 insert_4
  2. 第二步,向树中插入值为10的结点 insert_10
  3. 第三步,向树中插入值为15的结点 insert_15
  4. 移除结点 removal
  5. 第三步基础上插入值为0的结点 insert_0

Insert an element: insert into the last position and bubble it up.

Remove an element: remove the highest element and put the element at last position to the top, then bubble it down.

时间复杂度

其实可以理解为树的高度,因为完全二叉树的高度为$\lceil{log_2(n+1)}\rceil$, 其时间复杂度可以认为是$O(log_2n)$。