當前位置:首頁 » 編程語言 » java概率隨機

java概率隨機

發布時間: 2023-07-06 00:23:09

A. 求一段JAVA的概率演算法

public class Zhuq {
public static void main(String[] args) {
List<Person> listP=new ArrayList<Person>();
listP.add(new Person("小李", "1", 200));
listP.add(new Person("小王", "2", 210));
listP.add(new Person("小趙", "3", 230));
listP.add(new Person("小孫", "4", 100));
listP.add(new Person("小錢", "5", 3));
listP.sort(new Comparator<Person>() {

@Override
public int compare(Person o1, Person o2) {
// TODO Auto-generated method stub
return (((Person)o1).count)*(Math.random()*10+1)>(((Person)o2).count)*(Math.random()*10+1)?-1:1;
}
});
System.out.println(listP);
}
}

class Person {
String personName;
String id;
int count;

public Person(String personName, String id, int count) {
super();
this.personName = personName;
this.id = id;
this.count = count;
}
@Override
public String toString() {
return "Person [personName=" + personName + ", id=" + id + ", count=" + count + "]";
}

}
//本質還是隨機數

熱點內容
配置管理如何支持測試 發布:2025-07-04 10:38:53 瀏覽:656
雲伺服器2核4g3m什麼意思 發布:2025-07-04 10:23:34 瀏覽:241
蘋果手機如何往安卓手機導通訊錄 發布:2025-07-04 10:19:11 瀏覽:133
未來之役如何換伺服器 發布:2025-07-04 10:13:51 瀏覽:217
curlc上傳 發布:2025-07-04 09:59:35 瀏覽:882
沒有編譯器能運行c程序嗎 發布:2025-07-04 09:54:38 瀏覽:309
創建配置目錄錯誤是什麼意思 發布:2025-07-04 09:53:35 瀏覽:50
為什麼租憑伺服器不能玩了 發布:2025-07-04 09:03:01 瀏覽:984
安卓手機減肥軟體哪個好 發布:2025-07-04 08:51:17 瀏覽:997
Oracle查看資料庫歸檔 發布:2025-07-04 08:44:53 瀏覽:609