1

我正在使用以下代码为 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 创建(图形和代码)如下图所示的内容?

在此处输入图像描述

4

1 回答 1

1

您可以为 android 使用一些图表,例如: MPAndroidChart

于 2018-01-25T13:48:38.860 回答