生成隨機字串並排序
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隨機字串
- Linux Shell 生成隨機數和隨機字串Linux隨機字串
- QT生成固定長度的隨機字串QT隨機字串
- 【C#】比較 Random 與 RandomNumberGenerator 生成隨機字串C#random隨機字串
- random隨機生成10個數,然後氣泡排序random隨機排序
- 直播軟體開發,JS生成隨機字串的方法JS隨機字串
- python如何隨機選擇幾個字串並輸出Python隨機字串
- NumPy 陣列排序、過濾與隨機數生成詳解陣列排序隨機
- PostgreSQL 生成隨機數字、字串、日期、驗證碼以及 UUIDSQL隨機字串UI
- ULID 與 UUID:用於 JavaScript 的可排序隨機 ID 生成器UIJavaScript排序隨機
- JavaScript 生成隨機數JavaScript隨機
- 如何拆出字串中的數值並排序字串排序
- javaScript隨機排序演算法JavaScript隨機排序演算法
- C++生成隨機數C++隨機
- java隨機數生成原理Java隨機
- JS生成隨機密碼JS隨機密碼
- 隨機數生成器隨機
- Linux 生成隨機密碼Linux隨機密碼
- matlab 生成隨機數序列Matlab隨機
- Python如何隨機生成1到100的隨機數?Python隨機
- 生成按照天數初始化的隨機九位唯一自增字串隨機字串
- 生成隨機字串應該用random_bytes還是openssl_random_pseudo_bytes隨機字串random
- Python中如何生成隨機數?Python隨機
- PHP生成卡哇伊隨機頭像PHP隨機
- 使用Math類生成隨機數隨機
- 更安全的隨機數生成隨機
- php生成唯一隨機碼PHP隨機
- 幾種生成隨機數方法隨機
- JavaScript生成隨機顏色值JavaScript隨機
- Python 實現隨機打亂字串Python隨機字串
- 字串-簡單字串排序字串排序
- Matlab 隨機生成兩個數值之間的隨機數Matlab隨機
- 隨機快速排序Java程式碼實現隨機排序Java
- 應用:隨機生成驗證碼隨機
- 怎麼用Python生成隨機數Python隨機
- 微信小程式生成隨機數微信小程式隨機