找到無(wú)序數(shù)組的第K大數(shù)(堆實(shí)現(xiàn))

找到無(wú)序數(shù)組的第K大的數(shù)匿级,實(shí)現(xiàn)思路有很多種融求,我們這次嘗試下使用堆來(lái)實(shí)現(xiàn)稠肘。
時(shí)間復(fù)雜度 O(nlogk)


image.png
public static void main(String[] args) {

        int[] nums = { 1 ,3 ,4 ,8 ,9 ,7};

        // 模擬新元素直接入堆頂猖毫,然后調(diào)整堆頂位置
        nums[0] = 5;
        adjustHeap(nums, 0, nums.length-1);

        for (int num : nums) {
            System.out.println(num);
        }

    }

    /**
     * @param nums
     * @param adjustIndex  需要調(diào)整的位置
     * @param maxIndex 堆最大的size
     */
    public static void adjustHeap(int[] nums ,int adjustIndex ,int maxIndex) {

        int index = adjustIndex * 2 + 1;
        while (index <= maxIndex) {
            if ((index + 1) < maxIndex && nums[index] > nums[index + 1]) {
                index++;
            }
            if (nums[adjustIndex] > nums[index]) {

                int temp = nums[index];
                nums[index] = nums[adjustIndex];
                nums[adjustIndex] = temp;

                adjustIndex = index;
                index = adjustIndex * 2 + 1;
            } else {
                break;
            }
        }
    }

Heap的一般操作

package com.baidu.adu.common.benchmark;

import java.util.Arrays;
import java.util.List;

public class Heap {

    private Node[] heapArray;
    private int maxSize;
    private int currentSize;
    public int i1 = 0;
    public int i2 = 0;

    public Heap(int mx) {
        maxSize = mx;
        heapArray = new Node[maxSize];
        currentSize = 0;
    }

    public boolean isEmpty() {
        return currentSize == 0;
    }

    public boolean insert(int key) {
        if (currentSize == maxSize)
            return false;
        Node thenode = new Node(key);
        heapArray[currentSize] = thenode;
        trickleUp(currentSize++);
        return true;
    }

    public void trickleUp(int index) {
        int parent = (index - 1) / 2;
        Node bottom = heapArray[index];
        while (index > 0 && heapArray[parent].getkey() < bottom.getkey()) {

            i1++;
            heapArray[index] = heapArray[parent];
            index = parent;
            parent = (parent - 1) / 2;
        }
        heapArray[index] = bottom;
    }

    public Node remove() {
        Node root = heapArray[0];
        heapArray[0] = heapArray[--currentSize];
        trickleDown(0);
        return root;
    }

    public void trickleDown(int index) {
        int largeChild;
        Node top = heapArray[index];
        while (index < currentSize / 2) {
            i2++;
            int leftChild = 2 * index + 1;
            int rightChild = 2 * index + 2;
            if (rightChild < currentSize && heapArray[leftChild].getkey() < heapArray[rightChild].getkey())
                largeChild = rightChild;
            else
                largeChild = leftChild;
            if (top.getkey() >= heapArray[largeChild].getkey())
                break;
            heapArray[index] = heapArray[largeChild];
            index = largeChild;
        }
        heapArray[index] = top;
    }

    public boolean change(int index, int newvalue) {
        if (index < 0 || index >= currentSize)
            return false;
        int oldvalue = heapArray[index].getkey();
        heapArray[index].setkey(newvalue);
        if (oldvalue < newvalue)
            trickleUp(index);
        else
            trickleDown(index);
        return true;
    }

    public void displayHeap() {
        System.out.print("heapArray:");
        for (int i = 0; i < currentSize; i++) {
            if (heapArray[i] != null)
                System.out.print(heapArray[i].getkey() + "  ");
            else
                System.out.print("--");
        }
        System.out.println("");
        int nBlanks = 32;
        int itemsPerrow = 1;
        int column = 0;
        int j = 0;
        String dots = "........................";
        System.out.println(dots + dots);
        while (currentSize > 0) {
            if (column == 0)
                for (int i = 0; i < nBlanks; i++) {
                    System.out.print(" ");
                }
            System.out.print(heapArray[j].getkey());
            if (++j == currentSize)
                break;
            if (++column == itemsPerrow) {
                nBlanks /= 2;
                itemsPerrow *= 2;
                column = 0;
                System.out.println();
            } else
                for (int i = 0; i < nBlanks * 2 - 2; i++)
                    System.out.print(' ');

        }
        System.out.println("\n" + dots + dots);

    }

    public int getRoot() {

        return heapArray[0].getkey();
    }

    public static void main(String[] args) {

        Heap h = new Heap(10);

        List<Integer> list = Arrays.asList(44, 67, 33, 87, 15, 6, 24, 98, 65, 23, 45, 34, 4, 7, 9, 56, 35, 65, 12, 98);

        h.insert(list.get(0));
        h.insert(list.get(1));
        h.insert(list.get(2));
        h.insert(list.get(3));
        h.insert(list.get(4));
        h.insert(list.get(5));
        h.insert(list.get(6));
        h.insert(list.get(7));

        h.displayHeap();
        h.remove();
        h.displayHeap();

    }
}

package com.baidu.adu.common.benchmark;

public class Node {

    private int iData;

    public Node(int id) {
        iData = id;
    }

    public int getkey() {
        return iData;
    }

    public void setkey(int id) {
        iData = id;
    }

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末保礼,一起剝皮案震驚了整個(gè)濱河市吃度,隨后出現(xiàn)的幾起案子甩挫,更是在濱河造成了極大的恐慌,老刑警劉巖椿每,帶你破解...
    沈念sama閱讀 211,743評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件伊者,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡间护,警方通過查閱死者的電腦和手機(jī)亦渗,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)汁尺,“玉大人法精,你說我怎么就攤上這事〕胀唬” “怎么了搂蜓?”我有些...
    開封第一講書人閱讀 157,285評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)辽装。 經(jīng)常有香客問我帮碰,道長(zhǎng),這世上最難降的妖魔是什么拾积? 我笑而不...
    開封第一講書人閱讀 56,485評(píng)論 1 283
  • 正文 為了忘掉前任殉挽,我火速辦了婚禮,結(jié)果婚禮上殷勘,老公的妹妹穿的比我還像新娘此再。我一直安慰自己,他們只是感情好玲销,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評(píng)論 6 386
  • 文/花漫 我一把揭開白布输拇。 她就那樣靜靜地躺著,像睡著了一般贤斜。 火紅的嫁衣襯著肌膚如雪策吠。 梳的紋絲不亂的頭發(fā)上逛裤,一...
    開封第一講書人閱讀 49,821評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音猴抹,去河邊找鬼带族。 笑死,一個(gè)胖子當(dāng)著我的面吹牛蟀给,可吹牛的內(nèi)容都是我干的蝙砌。 我是一名探鬼主播,決...
    沈念sama閱讀 38,960評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼跋理,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼择克!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起前普,我...
    開封第一講書人閱讀 37,719評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤肚邢,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后拭卿,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體骡湖,經(jīng)...
    沈念sama閱讀 44,186評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評(píng)論 2 327
  • 正文 我和宋清朗相戀三年峻厚,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了响蕴。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,650評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡目木,死狀恐怖换途,靈堂內(nèi)的尸體忽然破棺而出懊渡,到底是詐尸還是另有隱情刽射,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評(píng)論 4 330
  • 正文 年R本政府宣布剃执,位于F島的核電站誓禁,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏肾档。R本人自食惡果不足惜摹恰,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評(píng)論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望怒见。 院中可真熱鬧俗慈,春花似錦、人聲如沸遣耍。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)舵变。三九已至酣溃,卻和暖如春瘦穆,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背赊豌。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工扛或, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人碘饼。 一個(gè)月前我還...
    沈念sama閱讀 46,370評(píng)論 2 360
  • 正文 我出身青樓熙兔,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親艾恼。 傳聞我的和親對(duì)象是個(gè)殘疾皇子黔姜,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評(píng)論 2 349