lintcode:Heapify

504 篇文章 0 订阅
66 篇文章 0 订阅
 Heapify

Given an integer array, heapify it into a min-heap array.

For a heap array A, A[0] is the root of heap, and for each A[i], A[i * 2 + 1] is the left child of A[i] and A[i * 2 + 2] is the right child of A[i].

Clarification

What is heap?

  • Heap is a data structure, which usually have three methods: push, pop and top. where "push" add a new element the heap, "pop" delete the minimum/maximum element in the heap, "top" return the minimum/maximum element.

What is heapify?
  • Convert an unordered integer array into a heap array. If it is min-heap, for each element A[i], we will get A[i * 2 + 1] >= A[i] and A[i * 2 + 2] >= A[i].

What if there is a lot of solutions?
  • Return any of them.

Example

Given [3,2,1,4,5], return [1,2,3,4,5] or any legal heap array.

Challenge

O(n) time complexity



class Solution {
private:
    void swap(vector<int> &A, int i, int j) {
        int tmp = A[i];
        A[i] = A[j];
        A[j] = tmp;
    }
    
    void heapifyHelper(vector<int> &A, int i)
    {
        int left = i*2+1;
        int right = i*2+2;
        int smallest = i;
        
        // find the smallest element and then swap with parent
        if (left<A.size() && A[left]<A[smallest]) 
            smallest = left;
        if (right<A.size() && A[right]<A[smallest])
            smallest = right;
            
        // this process would be loop to the button
        if (i != smallest)
        {
            swap(A, i, smallest);
            heapifyHelper(A, smallest);
        }
    }
    
public:
    /**
     * @param A: Given an integer array
     * @return: void
     */
    void heapify(vector<int> &A) {
        // write your code here
        
        int lastIdx = A.size()-1;
        int parentIdx=0;
        
        // try to find the last parent layer
        if (lastIdx % 2 == 0)
            parentIdx = (lastIdx-2)/2;
        else
            parentIdx = (lastIdx-1)/2;
        
        // loop from the last parent to top    
        for (int i=parentIdx; i>=0; i--)
            heapifyHelper(A, i);
            
    }
};

另外一个计算时间复杂度的链接

http://blog.csdn.net/mtawaken/article/details/7964914

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值