亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

歸并排序Merge Sort

系統 2060 0
      
         1
      
      
        //
      
      
        C語言實現
      
      
         2
      
      
         3
      
      
        void
      
       mergeSort(
      
        int
      
       array[],
      
        int
      
       first, 
      
        int
      
      
         last)


      
      
         4
      
      
        {


      
      
         5
      
      
        if
      
       (first < last)
      
        //
      
      
        拆分數列中元素只剩下兩個的時候,不再拆分
      
      
         6
      
      
            {


      
      
         7
      
      
        int
      
       mid = (first + last) / 
      
        2
      
      
        ;


      
      
         8
      
      
        //
      
      
        遞歸拆分數組
      
      
         9
      
      
                mergeSort(array, first, mid);


      
      
        10
      
               mergeSort(array, mid + 
      
        1
      
      
        , last);


      
      
        11
      
      
        //
      
      
        歸并兩個數組
      
      
        12
      
      
                merge(array, first, mid, last);     


      
      
        13
      
      
            }


      
      
        14
      
      
        }


      
      
        15
      
      
        16
      
      
        void
      
       merge(
      
        int
      
       array[], 
      
        int
      
       first,
      
        int
      
       mid,
      
        int
      
      
         last)


      
      
        17
      
      
        {


      
      
        18
      
      
        int
      
       i = first, j = mid + 
      
        1
      
      , k =
      
         first;


      
      
        19
      
      
        int
      
       temp[last + 
      
        1
      
      
        ];


      
      
        20
      
      
        21
      
      
        //
      
      
        從兩個數列的第一個開始判斷
      
      
        22
      
      
        while
      
       (i <= mid && j <=
      
         last)


      
      
        23
      
      
        if
      
       (array[i] <=
      
         array[j])


      
      
        24
      
                   temp[k ++] = array[i ++
      
        ];


      
      
        25
      
      
        else
      
      
        26
      
                   temp[k ++] = array[j ++
      
        ];


      
      
        27
      
      
        28
      
      
        //
      
      
        如果有剩余,補充進入數組
      
      
        29
      
      
        while
      
       (i <=
      
         mid)    


      
      
        30
      
               temp[k ++] = array[i ++
      
        ];


      
      
        31
      
      
        while
      
       (j <=
      
         last)


      
      
        32
      
               temp[k ++] = array[j ++
      
        ];


      
      
        33
      
      
        34
      
      
        //
      
      
        復制數組
      
      
        35
      
      
        while
      
       (first <=
      
         last)


      
      
        36
      
      
            {


      
      
        37
      
               array[first] =
      
         temp[first];


      
      
        38
      
               first ++
      
        ;


      
      
        39
      
      
            }


      
      
        40
      
       }
    
      
         1
      
      
        //
      
      
        Objective-C實現


      
      
         2
      
      
        //
      
      
        通過NSMutableArray的Category實現


      
      
         3
      
      
         4
      
      
        //
      
      
        .h文件
      
      
         5
      
      
        @interface
      
      
         NSMutableArray (ArraySort)


      
      
         6
      
      
         7
      
       - (
      
        void
      
      
        )mergeSort;


      
      
         8
      
      
         9
      
      
        @end
      
      
        10
      
      
        11
      
      
        //
      
      
        .m文件
      
      
        12
      
      
        13
      
      
        #import
      
      
        "
      
      
        NSMutableArray+ArraySort.h
      
      
        "
      
      
        14
      
      
        15
      
      
        @implementation
      
      
         NSMutableArray (ArraySort)


      
      
        16
      
      
        17
      
       - (
      
        void
      
      
        )mergeSort


      
      
        18
      
      
        {


      
      
        19
      
           [self sortByStartIndex:
      
        0
      
       endIndex:self.count - 
      
        1
      
      
        ];


      
      
        20
      
      
        }


      
      
        21
      
      
        22
      
       - (
      
        void
      
      )sortByStartIndex:(
      
        int
      
      )start endIndex:(
      
        int
      
      
        )end


      
      
        23
      
      
        {


      
      
        24
      
      
        if
      
       (start <
      
         end)


      
      
        25
      
      
            {


      
      
        26
      
      
        int
      
       mid = (start + end) / 
      
        2
      
      
        ;


      
      
        27
      
      
                [self sortByStartIndex:start endIndex:mid];


      
      
        28
      
               [self sortByStartIndex:mid + 
      
        1
      
      
         endIndex:end];


      
      
        29
      
      
                [self mergeByStartIndex:start midIndex:mid endIndex:end];


      
      
        30
      
      
            }


      
      
        31
      
      
        }


      
      
        32
      
      
        33
      
       - (
      
        void
      
      )mergeByStartIndex:(
      
        int
      
      )start midIndex:(
      
        int
      
      )mid endIndex:(
      
        int
      
      
        )end


      
      
        34
      
      
        {


      
      
        35
      
      
        int
      
       i = start,j = mid + 
      
        1
      
      
        ;


      
      
        36
      
           NSMutableArray *tempArray = [[NSMutableArray alloc] initWithCapacity:end + 
      
        1
      
      
        ];


      
      
        37
      
      
        38
      
      
        while
      
       (i <= mid && j <=
      
         end)


      
      
        39
      
      
        if
      
       ([[self objectAtIndex:i] integerValue] <=
      
         [[self objectAtIndex:j] integerValue])


      
      
        40
      
                   [tempArray addObject:[self objectAtIndex:i ++
      
        ]];


      
      
        41
      
      
        else
      
      
        42
      
                   [tempArray addObject:[self objectAtIndex:j ++
      
        ]];


      
      
        43
      
      
        44
      
      
        while
      
       (i <=
      
         mid)


      
      
        45
      
               [tempArray addObject:[self objectAtIndex:i ++
      
        ]];


      
      
        46
      
      
        while
      
       (j <=
      
         end)


      
      
        47
      
               [tempArray addObject:[self objectAtIndex:j ++
      
        ]];


      
      
        48
      
      
        49
      
      
        for
      
       (
      
        id
      
      
        object
      
      
        in
      
      
         tempArray)


      
      
        50
      
               [self replaceObjectAtIndex:start++ withObject:
      
        object
      
      
        ];


      
      
        51
      
      
        }


      
      
        52
      
      
        53
      
      
        @end
      
    

?

歸并排序Merge Sort


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 在线有码 | 久久午夜综合久久 | 一级毛片免费视频观看 | 中文字幕国产在线 | 国内精品久久久久影院免费 | 毛片看看 | 草莓视频一区二区精品 | 台湾一级毛片永久免费 | 精品在线视频播放 | 高清亚洲 | 日韩毛片在线免费观看 | 国产精品一 | 中中文字幕乱码 | 久草在线视频在线观看 | 欧美一级大片在线观看 | 91精品免费不卡在线观看 | 久久思| 亚洲精品综合一区二区三区在线 | 四虎影院成人在线观看 | 豆国产96在线 | 亚洲 | 免费国产高清精品一区在线 | 玖玖在线免费视频 | 99香蕉国产精品偷在线观看 | 干美女在线视频 | 成人久久影院 | 亚洲精品久久久久久动漫剧情 | 欧美一级α片毛片免费观看 | 奇米第四色在线观看 | 四虎精品免费视频 | 日本一区网站 | 伊人天天躁夜夜躁狠狠 | 女人大毛片一级毛片一 | 亚洲一区欧洲一区 | 久久久91| 四虎最新紧急入口4hu | 亚洲黄色成人 | 欧美黄色免费网址 | 婷婷综合久久中文字幕一本 | 精品视频99 | 免费观看成人www精品视频在线 | 麻豆一区二区三区四区 |