几个人换礼物,且分到的不能是自己的(方法2)

//根据索引分礼物 var personNum = [1,2,3,4,5]; var presentNum = [1,2,3,4,5];   var result = []; function getPres2(personNum,presentNum){     if(personNum.length==2){         result.push([personNum[0],presentNum[1]]);         result.push([personNum[1],presentNum[0]]);         console.log(result);         return result;     }     var rad = Math.floor(Math.random()*(personNum.length-1));     var rad2 = Math.floor(Math.random()*(presentNum.length-1));     if(personNum[rad]==presentNum[rad2]){         return getPres2(personNum,presentNum);     }     result.push([personNum[rad],presentNum[rad2]]);     personNum.splice(rad,1);     presentNum.splice(rad2,1);     return getPres2(personNum,presentNum);  } getPres2(personNum,presentNum);
上一篇:一项研究调查了采用Masimo Rad-G™搭配RRp(R)实现自动呼吸频率测量的影响


下一篇:Delphi程序员故事:David Vacanti介绍了他用Delphi开发的PROLINES 8船舶设计CAD软件