美文网首页
熟记代码片段

熟记代码片段

作者: QeekDong | 来源:发表于2018-03-12 11:52 被阅读9次

    1.转自 一遍记住Java常用的八种排序算法与代码实现

    • 直接插入排序:
            public void InsertSort(int[] a){
              int length=a.length;
              int insertNum;
              for(int i=1; i<length;i++){
                  insertNum = a[i];
                  int j = i-1;
              while(j>=0&&a[j]>insertNum){
                  a[j+1] = a[j];
                  j--; 
               }
               a[j+1] = intsertNum;
            }
    }
    

    相关文章

      网友评论

          本文标题:熟记代码片段

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