美文网首页
算法复杂度

算法复杂度

作者: 响响月月 | 来源:发表于2018-10-10 15:19 被阅读0次

    算法复杂度示意图:

    算法复杂度计算方式:

     void func(int n) {
        for (int i = 2; i < n; i++) {
            i = i * 2;
        }
    }
    

    2^t <n
    t = log(2)(n)
    T(n) = O(log(2)(n))
    时间复杂度为 O(log n)

    相关文章

      网友评论

          本文标题:算法复杂度

          本文链接:https://www.haomeiwen.com/subject/rqgpaftx.html