java常见排序算法——冒泡排序

2025年01月13日 建站教程

public void bubbleSort(int[] nums){
  int temp;
  boolean isSort = false; 
  for (int i = 0; i < nums.length-1; i++) {
    for (int j = 0; j < nums.length-1-i; j++) { if(nums[j] > nums[j+1]){
        isSort = true;
        temp = nums[j];
        nums[j] = nums[j+1];
        nums[j+1] = temp;
      }
    }
    if(!isSort){
      return;
    } else {
      isSort = false;
    }
  }

}

PS:每轮循环确定最值。

本文链接:http://so.lmcjl.com/news/21279/

展开阅读全文
相关内容