美文网首页
[算法练习] 冒泡排序

[算法练习] 冒泡排序

作者: afluy | 来源:发表于2020-05-02 21:55 被阅读0次
     public void bubbleSort(int[] nums) {
            if (nums == null) {
                return;
            }
            if (nums.length == 1) {
                return;
            }
    
            for (int times = 0; times < nums.length; ++times) {
                int value = nums[0];
                for (int index = 1; index < nums.length - times; ++index) {
                    int current = nums[index];
                    if (current < value) {
                        nums[index] = value;
                        nums[index - 1] = current;
                    }
                    value = nums[index];
                }
            }
    
            for (int num : nums) {
                System.out.println(num);
            }
    
        }
    

    相关文章

      网友评论

          本文标题:[算法练习] 冒泡排序

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