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

java冒泡排序

时间:2017-12-03 00:36:05      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:oid   public   i++   比较   port   class   tostring   rgs   ati   

import java.util.Arrays;

public class BubbleSort {
	public static void main(String[] args) {
		int[] a = { 21, 22, 4, 87, 5, 3, 45, 81, 34 };
		System.out.println(Arrays.toString(a));
		bubbleSort(a);
		System.out.println(Arrays.toString(a));
	}

	public static void bubbleSort(int[] arr) {
		for (int i = 0; i < arr.length; i++) { // 外层循环,控制趟数
			for (int j = 0; j < arr.length - 1 - i; j++) { // 比较次数
				if (arr[j] > arr[j + 1]) {
					int tmp = arr[j];
					arr[j] = arr[j + 1];
					arr[j + 1] = tmp;
				}
			}
		}
	}

}

  

java冒泡排序

标签:oid   public   i++   比较   port   class   tostring   rgs   ati   

原文地址:http://www.cnblogs.com/Tan-Yin-Yin-19971130/p/7956044.html

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