• 面试题36:数组中的逆序对


    题目描述

    在数组中的两个数字如果前面一个数字大于后面的数字,则这两个数字组成一个逆序对。输入一个数组,求出这个数组中的逆序对的总数。

    题目分析

    剑指Offer(纪念版)P189

    代码实现

    int InversePairs(int* data, int length)
    {
        if(data == NULL || length < 0)
            return 0;
    
        int* copy = new int[length];
        for(int i = 0; i < length; ++ i)
            copy[i] = data[i];
    
        int count = InversePairsCore(data, copy, 0, length - 1);
        delete[] copy;
    
        return count;
    }
    
    int InversePairsCore(int* data, int* copy, int start, int end)
    {
        if(start == end)
        {
            copy[start] = data[start];
            return 0;
        }
    
        int length = (end - start) / 2;
    
        int left = InversePairsCore(copy, data, start, start + length);
        int right = InversePairsCore(copy, data, start + length + 1, end);
    
        // i初始化为前半段最后一个数字的下标
        int i = start + length; 
        // j初始化为后半段最后一个数字的下标
        int j = end; 
        int indexCopy = end;
        int count = 0;
        while(i >= start && j >= start + length + 1)
        {
            if(data[i] > data[j])
            {
                copy[indexCopy--] = data[i--];
                count += j - start - length;
            }
            else
            {
                copy[indexCopy--] = data[j--];
            }
        }
    
        for(; i >= start; --i)
            copy[indexCopy--] = data[i];
    
        for(; j >= start + length + 1; --j)
            copy[indexCopy--] = data[j];
    
        return left + right + count;
    }
    

      

  • 相关阅读:
    Swift -- 8.3 多态
    Swift -- 8.2 类的构造与析构
    Swift -- 8.1 继承
    Swift -- 7.6 构造器
    Swift -- 7.5 类型属性,方法
    Swift -- 7.4 方法,下标,可选链
    Swift -- 7.3 类和结构体
    Swift -- 7.2 枚举
    Swift -- 7.1 面向对象简介
    4-5轮选区的不透明度1.7
  • 原文地址:https://www.cnblogs.com/xwz0528/p/4864470.html
Copyright © 2020-2023  润新知