这个 algorithm.Can 我让它更快的时间复杂度是多少?

What's the time complexity of this algorithm.Can i make it faster?

该算法在从 arrl 开始到 depr.I 结束的特定时间间隔内找到最重叠的活动(带),使用快速排序实现 O(nlogn) 时间复杂度,然后使用 O(n) 的 while 循环来计算这些时间间隔内冲突活动的数量 1.So 这像是 O(nlogn) + O(n) 时间复杂度吗? 2.Can 我让它在 O(n) 时更快? 3.Lastly,理论上,O(n)时间复杂度可以使用Timsort吗?

用 C 编写的代码用于 15 个活动,但假设它是通用的并且具有未排序的 arrl 和 depr

编辑:结果是 1 小时内活动最多

void findMaxBands(int n,int arr1[n],int depr[n]);
void quickSort(int a[],int l,int h);
int partition(int a[],int l,int h);

int main(){
    int arrl[15] = {18,18,19,19,19,19,20,20,20,20,21,22,22,22,23};
    int depr[15] = {19,21,20,21,22,23,21,22,22,23,23,23,24,24,24};
    int n = 15;
    findMaxBands(n,arrl,depr);
    return 0;
}

void findMaxBands(int n,int arrl[n],int depr[n]){
    quickSort(arrl,0,15);
    quickSort(depr,0,15);

    int guestsIn = 1,maxGuests = 1,time = arrl[0];
    int i = 1, j = 0;

    while (i < n && j < n){
        if (arrl[i] <= depr[j]){
            guestsIn++;
            if (guestsIn > maxGuests){
                maxGuests = guestsIn;
                time = arrl[i];
            }
            i++;
        }
        else{
            guestsIn--;
            j++;
        }
    }
    printf("Maximum Number of Bands : %d at time %d-%d",maxGuests,time-1,time);
}

void quickSort(int a[],int l,int h){
    int j;
    if(l<h){
        j=partition(a,l,h);
        quickSort(a,l,j-1);
        quickSort(a,j+1,h);
    }
}

int partition(int a[],int l,int h){
    int v,i,j,temp;
    v=a[l];
    i=l;
    j=h+1;

    do{
        do{
            i++;
        }while(a[i]<v&&i<=h);
        do{
            j--;
        }while(v<a[j]);
        if(i<j){
            temp=a[i];
            a[i]=a[j];
            a[j]=temp;
        }
    }while(i<j);
    a[l]=a[j];
    a[j]=v;
    return(j);
}

1.So is this like O(nlogn) + O(n) time complexity?

O(n log(n)) + O(n) = O(n log(n))

参考。例如。 Big O when adding together different routines了解更多详情。

2.Can i make it even faster at O(n)?

3.Lastly,theortically,is it possible to use Timsort for O(n) time complexity?

通用(比较)排序算法可能具有 O(n) 的最佳情况复杂度,但 average/worst 情况最多具有 O(n log(n)) 的复杂度。您可以找到几种排序算法的概述 here 及其复杂性。