美文网首页
冒泡排序

冒泡排序

作者: 午夜大鸟王 | 来源:发表于2016-08-26 11:35 被阅读6次

    时间复杂度: N^2

    for (int i = 0; i < 5; i++)
        {
            for (int j = i + 1; j < 5; j++)
            {
                if (unsorted[i] < unsorted[j]) {
                    int temp = unsorted[i];
                    unsorted[i] = unsorted[j];
                    unsorted[j] = temp;
                }
            }
        }
    

    相关文章

      网友评论

          本文标题:冒泡排序

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