字元ASCII碼排序
阿新 • • 發佈:2019-01-31
描述:
輸入三個字元(可以重複)後,按各字元的ASCII碼從小到大的順序輸出這三個字元。
輸入:
第一行輸入一個數N,表示有N組測試資料。後面的N行輸入多組資料,每組輸入資料都是佔一行,有三個字元組成,之間無空格。
輸出:
對於每組輸入資料,輸出一行,字元中間用一個空格分開。
這個題實際上就是要實現一個排序,這裡使用的是氣泡排序法。程式碼如下:
import java.util.*; /** * ASCII碼排序 * @author sdu20 * */ public class ASCIIsort { public static void main(String[] args) { // TODO Auto-generated method stub Scanner in = new Scanner(System.in); try{ String str = in.nextLine(); int num = Integer.valueOf(str).intValue();//為了防止第一行末尾的回車的影響 char[][] results = new char[num][]; for(int i = 0;i<num;i++){ str = in.nextLine(); results[i] = sort(str); } for(int i=0;i<num;i++){ for(int j = 0;j<results[i].length;j++) System.out.print(results[i][j]+" "); System.out.println(); } }catch(Exception e){ e.printStackTrace(); } } public static char[] sort(String str){ if(str.isEmpty()) return null; char[] chars = new char[str.length()]; for(int i = 0;i<str.length();i++){ chars[i] = str.charAt(i); } for(int i = chars.length-1;i>=0;i--){ char max = chars[0]; int maxIndex = 0; for(int j = 0;j<=i;j++){ if(chars[j]>max){ max = chars[j]; maxIndex = j; } } if(maxIndex != i){ char x = chars[i]; chars[i] = chars[maxIndex]; chars[maxIndex] = x; } } return chars; } }
執行結果截圖如下: