轮盘选择

时间:2018-01-25 13:41:58

标签: android roulette-wheel-selection

我正在使用机器人的轮盘选择算法,使用下面的代码:

//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创建(graphique和code)图中所示的内容?

enter image description here

1 个答案:

答案 0 :(得分:1)

你可以使用一些图表用于android,例如: MPAndroidChart