最好,最坏,平均,均摊时间复杂度
Posted hanguocai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最好,最坏,平均,均摊时间复杂度相关的知识,希望对你有一定的参考价值。
// n 表示数组 array 的长度
int find(int[] array, int n, int x) {
int i = 0;
int pos = -1;
for (; i < n; ++i) {
if (array[i] == x) pos = i;
}
return pos;
}
时间复杂度是O(n)
// n 表示数组 array 的长度
int find(int[] array, int n, int x) {
int i = 0;
int pos = -1;
for (; i < n; ++i) {
if (array[i] == x) {
pos = i;
break;
}
}
return pos;
}
最好是O(1),最坏是O(n)
平均时间复杂度如图:
以上是关于最好,最坏,平均,均摊时间复杂度的主要内容,如果未能解决你的问题,请参考以下文章
入门篇2 # 复杂度分析(下):浅析最好最坏平均均摊时间复杂度