码迷,mamicode.com
首页 > 其他好文 > 详细

最好,最坏,平均,均摊时间复杂度

时间:2018-11-03 14:10:10      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:最好   []   ++   int   http   数组   ret   图片   alt   

// 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)

平均时间复杂度如图:技术分享图片

技术分享图片

 

最好,最坏,平均,均摊时间复杂度

标签:最好   []   ++   int   http   数组   ret   图片   alt   

原文地址:https://www.cnblogs.com/hanguocai/p/9900204.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!