题库 C++/C语言题库 题目列表 下面schedule函数的时间复杂度为( )。1 #include...
单选题

下面schedule函数的时间复杂度为( )。

1 #include <algorithm>
2 using namespace std;
3 struct activity {
4  int id, start, end;
5 };
6 bool compare(activity a, activity b) {
7  return a.end < b.end;
8 }
9 int schedule(int n, activity * p) {
10  sort(p, p + n, compare);
11  int cnt = 0, end = 0;
12  for (int i = 0; i < n; i++) {
13   if (p[i].start >= end) {
14    end = p[i].end;
15    cnt++;
16   }
17  }
18  return cnt;
19 }
A.

0(n)

B.

o(log(n) )

C.

O(nlog(n))

D.

0(n2)

题目信息
C++语言等级考试真题 2024年 七级 选择题
0%
正确率
0
评论
84
点击