冒泡排序
Posted zz-1120-wtenlb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了冒泡排序相关的知识,希望对你有一定的参考价值。
2 3 public class MyBubbleSort { 4 public static void main(String[] args) { 5 int num[] = {10,8,33,54,1,6,12,43,32,27}; 6 bubbleSort(num); 7 for (int i = 0; i < num.length; i++) { 8 System.out.print(num[i] + " "); 9 } 10 } 11 12 private static void bubbleSort(int[]num){ 13 for (int i = 0; i < num.length ; i++) { 14 for (int j = i+1; j < num.length ; j++) { 15 if (num[i]>num[j]){ 16 int temp = num[i]; 17 num[i] = num[j]; 18 num[j] = temp; 19 } 20 } 21 } 22 } 23 }
以上是关于冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章