冒泡排序 算法(冒泡,选择,插入,数组排序)

时间:2016-05-12 03:29:43
【文件属性】:

文件名称:冒泡排序 算法(冒泡,选择,插入,数组排序)

文件大小:35KB

文件格式:DOC

更新时间:2016-05-12 03:29:43

冒泡排序

算法(冒泡,选择,插入,数组排序) package Teacher; import java.io.*; import java.util.Scanner; public class Tset { public static void main(String args[]) throws IOException { // 需要排序的数组,目前是按照升序排列的 int a[] = new int[5]; System.out.println("请输入数字,每输入一个数字按回车键!"); BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); for(int i =0;i a[j]){ int temp = a[j]; a[j] = a[i]; a[i] = temp; } } } */ /* //选择排序 int k, temp; for(int i=0; i 0) && (a[j] < a[j - 1]); j--) { // 交换 temp = a[j]; a[j] = a[j - 1]; a[j - 1] = temp; } } */ //数组排序 java.util.Arrays.sort(a); // 检测一下排序的结果 for(int i : a){ System.out.print(" "+i); } } }


网友评论