我正在使用以下代码为 android 使用轮盘赌选择算法:
//int n=4;
//double [] weight = new double [n];
//weight[0]=9;
//weight[1]=8;
//weight[2]=10;
//weight[3]=1;
public void Roulette(double weight[],double max_weight){
int index=0;
while (true){
index= (int)(weight.length*Math.random());
if(Math.random()<weight[index]/max_weight) {break;}
}
Toast.makeText(getBaseContext(),"Chosen="+index,Toast.LENGTH_LONG).show();
}
是否可以使用 android studio 创建(图形和代码)如下图所示的内容?