数据结构-冒泡排序
Posted linux777
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构-冒泡排序相关的知识,希望对你有一定的参考价值。
1 package com.datastack.search; 2 3 import java.util.Arrays; 4 5 //冒泡排序 6 public class BubSearch 7 public static void main(String[] args) 8 int[] arr = 6,1,8,23,3,5,6,9,12; 9 int temp; 10 for(int i=0; i<arr.length; i++) 11 for(int j=0; j<arr.length-1-i; j++) 12 if(arr[j]>arr[j+1]) 13 temp = arr[j]; 14 arr[j] = arr[j+1]; 15 arr[j+1] = temp; 16 17 18 19 System.out.println(Arrays.toString(arr)); 20 21
以上是关于数据结构-冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章