for(var i=0;i if(Math.random() allComponents.push("good");
goodComponents.push(i);
}else{
allComponents.push("bad");
badComponents.push(i);
}
}
其中allComponents中储存的是零件的好坏标识,比如["good","bad","good"...]
goodComponents储存的是好零件在allComponents中的序号,比如[0,2...]
badComponents储存的则是坏零件在allComponents中的序号,比如[1,...]
另外,你题目中有一处是自我矛盾的,前面说“只知道好的零件比坏的零件多”,后面又说“生成好的零件和坏的零件概率一致”,这个怎么解释?