生成隨機字串並排序
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Random;
public class collectionstest2 {
public List
public List
Random random=new Random();
//對類物件的排序(隨機生成不同的ID排序)
public void test(){
int k,a,b,c,d,e;
k=random.nextInt(10);
studentlist.add(new student(k+"","bobay"));
a=random.nextInt(10);
if(a!=k){
studentlist.add(new student(a+"","ann"));
}else{this.random.nextInt();}
b=random.nextInt(10);
if(b!=k&&b!=a){
studentlist.add(new student(b+"","ken"));
}else{
this.random.nextInt();
}
c=random.nextInt(10);
if(c!=k&&c!=a&&c!=b){
studentlist.add(new student(c+"","mike"));
}else{
this.random.nextInt();
}
System.out.println("-----------排序前------------");
for(student s:studentlist){
System.out.println("學生:"+s.id+" "+s.name);
}
Collections.sort(studentlist);
System.out.println("-----------排序後------------");
for(student s:studentlist){
System.out.println("學生:"+s.id+" "+s.name);
}
}
//對字串排序
public void stringSort(){
for(int i=0;i String str="abcdefghilmnopqrstuvwxyzABCDEFGHILMNOPQRSTUVWXYZ0123456789";
int b=str.length();
StringBuilder sb=new StringBuilder();
int d=random.nextInt(10);
for(int a=0;a
}
sb.toString();
stringlist.add(sb);
}
System.out.println("--------------排序前--------------");
for(StringBuilder string:stringlist){
System.out.println("字元:"+string);
}
Collections.sort(stringlist, new comparatortest())
;//這裡需要新建類建立一個comparator方法:
/*
import java.util.Comparator;
public class comparatortest implements Comparator
@Override
public int compare(StringBuilder o1, StringBuilder o2) {
// TODO Auto-generated method stub
return o1.toString().compareTo(o2.toString());
}
}
*/
System.out.println("--------------排序後--------------");
for(StringBuilder string:stringlist){
System.out.println("字元:"+string);
}
}
public static void main(String[] args) {
collectionstest2 c1=new collectionstest2();
c1.test();
c1.stringSort();
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2480/viewspace-2807994/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 隨機字串生成與排序隨機字串排序
- 第六章 生成隨機字串並排序 練習隨機字串排序
- python生成隨機數、隨機字串Python隨機字串
- javascript隨機生成字串,可以用來生成隨機密碼JavaScript隨機字串密碼
- Linux Shell 生成隨機數和隨機字串Linux隨機字串
- 【轉】python生成隨機字串Python隨機字串
- python 隨機生成字串資料Python隨機字串
- QT生成固定長度的隨機字串QT隨機字串
- 生成固定長度不重複的隨機字串隨機字串
- 隨機排序隨機排序
- 【C#】比較 Random 與 RandomNumberGenerator 生成隨機字串C#random隨機字串
- random隨機生成10個數,然後氣泡排序random隨機排序
- 直播軟體開發,JS生成隨機字串的方法JS隨機字串
- 【DBMS_RANDOM】使用 DBMS_RANDOM包生成隨機字串random隨機字串
- php隨機字串PHP隨機字串
- NumPy 陣列排序、過濾與隨機數生成詳解陣列排序隨機
- 生成隨機排列隨機
- 生成隨機數隨機
- python如何隨機選擇幾個字串並輸出Python隨機字串
- python:numpy陣列運算、排序、統計、隨機數生成Python陣列排序隨機
- python 隨機字串Python隨機字串
- PostgreSQL 生成隨機數字、字串、日期、驗證碼以及 UUIDSQL隨機字串UI
- JavaScript 生成隨機數JavaScript隨機
- mysql生成隨機數MySql隨機
- [Z]Oracle 的隨機數、隨機日期和時間、隨機字串Oracle隨機字串
- JavaScript陣列隨機排序JavaScript陣列隨機排序
- Python隨機數與隨機字串詳解Python隨機字串
- [隨機數詳解]生成一個隨機數,生成指定範圍的隨機數及隨機陣列去重隨機陣列
- Python 中的POST/GET包構建以及隨機字串的生成Python隨機字串
- 隨機數生成器隨機
- JS生成隨機密碼JS隨機密碼
- java隨機數生成原理Java隨機
- canvas隨機生成星星(轉)Canvas隨機
- 生成隨機整數方法隨機
- python 隨機數生成Python隨機
- C++生成隨機數C++隨機
- javaScript隨機排序演算法JavaScript隨機排序演算法
- 如何拆出字串中的數值並排序字串排序