码迷,mamicode.com
首页 > 编程语言 > 详细

冒泡排序

时间:2019-12-23 16:30:01      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:static   color   sort   main   ring   冒泡   code   system   str   

/**
 * @Description:?【】?->冒泡排序
 * @Param: 
 * @Return: 
 * @Author: Mr.li
 * @Date: 2019/12/23
 */
public class DubbleSort {
    public static void main(String[] args) {
        int[] numbers = new int[]{1, 5, 8, 2, 3, 9, 4};
        int i, j;
        for (i = 0; i < numbers.length; i++) {
            for (j = 0; j < numbers.length - i - 1; j++) {
                if (numbers[j] > numbers[j + 1]) {
                    int temp = numbers[j];
                    numbers[j] = numbers[j + 1];
                    numbers[j + 1] = temp;
                }
            }
        }
        System.out.println("从小到大排序后的结果是:");
        for (i = 0; i < numbers.length; i++) {
            System.out.print(numbers[i] + " ");
        }
    }
}

冒泡排序

标签:static   color   sort   main   ring   冒泡   code   system   str   

原文地址:https://www.cnblogs.com/name-lizonglin/p/12084192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!