国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

leetcode315. Count of Smaller Numbers After Self

elarity / 2991人閱讀

摘要:當(dāng)我們希望查詢時(shí),則從根節(jié)點(diǎn)開(kāi)始尋找其所在的區(qū)間,如果位于左側(cè)區(qū)間,則查詢左子樹(shù)啊,如果位于右側(cè)區(qū)間,則查詢右子樹(shù)。如果橫跨了分割點(diǎn),則分別查詢左子樹(shù)的部分和右子樹(shù)的部分。

題目要求
You are given an integer array nums and you have to return a new counts array. 
The counts array has the property where counts[i] is the number of smaller elements to the right of nums[i].

Example:

Given nums = [5, 2, 6, 1]

To the right of 5 there are 2 smaller elements (2 and 1).
To the right of 2 there is only 1 smaller element (1).
To the right of 6 there is 1 smaller element (1).
To the right of 1 there is 0 smaller element.
Return the array [2, 1, 1, 0].

輸入一個(gè)整數(shù)數(shù)組nums[i],返回所有一個(gè)新的數(shù)組count,該數(shù)組第i位上的count[i]表示nums[i]右側(cè)小于nums[i]的數(shù)字的個(gè)數(shù)。

簡(jiǎn)單說(shuō)一說(shuō)Segment Tree

SegmentTree常常用于對(duì)于一個(gè)數(shù)組有多次范圍型查詢的場(chǎng)景。比如計(jì)算從L到R之間所有元素的和,或者找到L到R之間的最小元素。這里L(fēng)和R是會(huì)移動(dòng)的。

SegmentTree本質(zhì)上是一棵二叉樹(shù),該二叉樹(shù)會(huì)存儲(chǔ)一個(gè)區(qū)間的某種值,如最大值,最小值或是該區(qū)間所有元素的和。如果根節(jié)點(diǎn)代表這個(gè)數(shù)組A[1...N],那么它的每一個(gè)葉節(jié)點(diǎn)代表一個(gè)元素A[i],每一個(gè)非葉節(jié)點(diǎn)代表一個(gè)區(qū)間A[i...j],其中0<=i

當(dāng)我們希望插入一個(gè)SegmentTreeNode時(shí),我們要找到更新所在的區(qū)間,并且遞歸的將其下所有的區(qū)間作出相應(yīng)的更改。

當(dāng)我們希望查詢時(shí),則從根節(jié)點(diǎn)開(kāi)始尋找其所在的區(qū)間,如果位于左側(cè)區(qū)間,則查詢左子樹(shù)啊,如果位于右側(cè)區(qū)間,則查詢右子樹(shù)。如果橫跨了分割點(diǎn),則分別查詢左子樹(shù)的部分和右子樹(shù)的部分。

思路和代碼

這里我們將從右往左構(gòu)建一棵二叉搜索樹(shù),這棵樹(shù)的每個(gè)節(jié)點(diǎn)還將存儲(chǔ)額外的信息,即遍歷到nums[i]時(shí),該節(jié)點(diǎn)的值重復(fù)的數(shù)量duplicateCount,以及從i到該節(jié)點(diǎn)共有幾個(gè)數(shù)字小于該節(jié)點(diǎn)而大于其父節(jié)點(diǎn)的值smallerThan(相當(dāng)于左子樹(shù)元素的個(gè)數(shù))。

直接從例子入手吧:
假設(shè)現(xiàn)在有這樣一個(gè)數(shù)組[11,6,9,9,3,1,7]
則構(gòu)造樹(shù)的步驟如下:
注:括號(hào)中的值分別對(duì)用這smallerThan和duplicateCount

插入7
7(0, 1)

此時(shí)右側(cè)小于7的數(shù)字為0個(gè)

插入1
   7(1,1)
  /
1(0,1)

當(dāng)向左插入節(jié)點(diǎn)時(shí),父節(jié)點(diǎn)的smallerThan加一。此時(shí)我們看到右側(cè)小于1的數(shù)字還是0個(gè)

插入3
   7(2,1)
  /
1(0,1)
  
   3(0,1) 

此時(shí)我們看到,3比1大,因此在1處將其作為右節(jié)點(diǎn)插入。此時(shí)比3小的數(shù)字也就是1和所有比1小的數(shù)字,即0+1 = 1這里0對(duì)應(yīng)比1小的數(shù)字,1對(duì)應(yīng)數(shù)字1的重復(fù)次數(shù)。

   7(2,1)
  /     
1(0,1)   9(0, 1)
  
   3(0,1)  

此時(shí)我們?cè)诟?jié)點(diǎn)7處向右插入節(jié)點(diǎn)9,每一次向右插入都意味著有數(shù)字比當(dāng)前的值小,因此比9小的數(shù)字的個(gè)數(shù)為2 + 1 + 0 = 3這里0代表著比7大但是比9小的元素的個(gè)數(shù)。

插入9
   7(2,1)
  /     
1(0,1)   9(0, 2)
  
   3(0,1) 

重復(fù)插入9,因此將9的duplicateCount加一,比其小的元素的個(gè)數(shù)還是為2+1+0=3。

插入6
   7(3,1)
  /     
1(0,1)   9(0, 2)
  
   3(0,1) 
     
      6(0,1)

首先看到根節(jié)點(diǎn)7的smallerThan加一,然后將所有右拐處的節(jié)點(diǎn)值相加,即0+1 + 0+1 + 0 = 2

插入11
   7(3,1)
  /     
1(0,1)   9(0, 2)
          
   3(0,1)   11(0,1)
     
      6(0,1)

那么小于11的數(shù)字有幾個(gè)呢?沒(méi)錯(cuò),就是3+1+0+2+0 = 6

代碼實(shí)現(xiàn)如下:

    public List countSmaller(int[] nums) {
        LinkedList result = new LinkedList();
        if(nums.length == 0) return result;
        SpecialTreeNode root = new SpecialTreeNode(nums[nums.length-1]);
        result.addFirst(0);
        for(int i = nums.length-2 ; i>=0 ; i--){
            int count = insert(root, nums[i]);
            result.addFirst(count);
        }
        return result;
    }
    
    private int insert(SpecialTreeNode root, int val){
        if(val == root.val){
            root.addDuplicate();
            return root.smallerThan;
        }else if(val < root.val){
            root.addSmallerThan();
            if(root.left==null){
                SpecialTreeNode s = new SpecialTreeNode(val);
                root.left = s;
                return 0;
            }else{
                return insert(root.left, val);
            }
        }else{
            if(root.right == null){
                SpecialTreeNode s = new SpecialTreeNode(val);
                root.right = s;
                return root.smallerThan + root.duplicateCount;
            }else{
                return root.smallerThan + root.duplicateCount + insert(root.right, val);
            }
        }
        
    }
    class SpecialTreeNode{
        int val = 0, smallerThan = 0, duplicateCount = 1;
        SpecialTreeNode left;
        SpecialTreeNode right;
        
        SpecialTreeNode(int val){
            this.val = val;
        }
        
        void addDuplicate(){
            this.duplicateCount++;
        }
        
        void addSmallerThan(){
            this.smallerThan++;
        }
    }
參考文章
Segment Tree Tutorials


想要了解更多開(kāi)發(fā)技術(shù),面試教程以及互聯(lián)網(wǎng)公司內(nèi)推,歡迎關(guān)注我的微信公眾號(hào)!將會(huì)不定期的發(fā)放福利哦~

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/68894.html

相關(guān)文章

  • Leetcode[315] Count of Smaller Numbers After Self

    摘要:復(fù)雜度思路每遍歷到一個(gè)數(shù),就把他到已有的中。對(duì)于每一個(gè),維護(hù)一個(gè)和一個(gè)自身的數(shù)目。比如,然后每次遍歷到一個(gè)數(shù),就把對(duì)應(yīng)位置的值加一。比如碰到之后,就變成,然后統(tǒng)計(jì)的和。 Leetcode[315] Count of Smaller Numbers After Self ou are given an integer array nums and you have to return a...

    dack 評(píng)論0 收藏0
  • leetcode 315 Count of Smaller Numbers After Self

    摘要:我們建立的,其中解決重復(fù)值的問(wèn)題,記錄左子樹(shù)的節(jié)點(diǎn)數(shù)。給定要找的點(diǎn),這里的規(guī)律就是,往右下走,說(shuō)明當(dāng)前點(diǎn)和當(dāng)前的的左子樹(shù)的值全部比小。我們走到要向右,這是左子樹(shù)沒(méi)變化,這里也不變。 題目細(xì)節(jié)描述參看leetcode。 今天的重頭戲 LC315 Count of Smaller Numbers After Self.在講這個(gè)題目之前,請(qǐng)思考這個(gè)問(wèn)題。在BST找到所有比Node P小的節(jié)點(diǎn)...

    Little_XM 評(píng)論0 收藏0
  • 315. Count of Smaller Numbers After Self

    摘要:題目鏈接的題,用來(lái)做,這種求有多少的題一般都是。里多加一個(gè)信息表示以為的節(jié)點(diǎn)數(shù)。也可以做,因?yàn)槭墙y(tǒng)計(jì)有多少的,其實(shí)就是求從最小值到的。的是,要做一個(gè)映射,把的值映射到之間。所以先把給一下,用一個(gè)來(lái)做映射。還有的方法,參考 315. Count of Smaller Numbers After Self 題目鏈接:https://leetcode.com/problems... divi...

    cnio 評(píng)論0 收藏0
  • leetcode 315 Count of Smaller Numbers After Self

    摘要:題目意思就是要一個(gè)個(gè)的返回當(dāng)前的最小值。所以解法自然就是。我們需要找出被打亂的點(diǎn)并返回正確結(jié)果。然后將兩個(gè)不正確的點(diǎn)記錄下來(lái),最后回原來(lái)正確的值。如果是葉子節(jié)點(diǎn),或者只有一個(gè)子樹(shù)。思想來(lái)自于的代碼實(shí)現(xiàn)。 跳過(guò)總結(jié)請(qǐng)點(diǎn)這里:https://segmentfault.com/a/11... BST最明顯的特點(diǎn)就是root.left.val < root.val < root.right.v...

    inapt 評(píng)論0 收藏0
  • [LeetCode] 315. Count of Smaller Numbers After Sel

    Problem You are given an integer array nums and you have to return a new counts array. The counts array has the property where counts[i] is the number of smaller elements to the right of nums[i]. Exam...

    FingerLiu 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<