没有重复随机函数

时间:2016-03-03 13:40:40

标签: javascript random switch-statement

函数rnd_act_select()在代码中进一步随机化了四个函数,它由我设置的Photoshop中的一个按钮调用,一切运行良好,但我不知道如何设置随机化而不重复直到所有案件都被执行的案件。有人能给我一个解决这个问题的方法吗? 谢谢。

function rnd_act_select() {
    // random selection
    NumberOfFunctions = 4;//Number of functions in your switch statement.
    var ran = Math.floor(Math.random() * NumberOfFunctions);

    switch(ran) {
        case 0: func_one(); break;
        case 1: func_two(); break;
        case 2: func_three(); break;
        case 3: func_four(); break;
        default : return;
    }
};


我试过这种方式,但它不起作用:

function rnd_act_select() {
// random selection begin
function shuffle(array) {
  var currentIndex = array.length, temporaryValue, randomIndex;

  // While there remain elements to shuffle...
  while (0 !== currentIndex) {

    // Pick a remaining element...
    randomIndex = Math.floor(Math.random() * currentIndex);
    currentIndex -= 1;

    // And swap it with the current element.
    temporaryValue = array[currentIndex];
    array[currentIndex] = array[randomIndex];
    array[randomIndex] = temporaryValue;
  }

  return array;
}
var arr = [func_one,func_two,func_three,func_four];
var shuf = shuffle(arr);

switch(shuf) {
    case 0: func_one(); break;
    case 1: func_two(); break;
    case 2: func_three(); break;
    case 3: func_four(); break;
    default : return;
}
// random selection end
};


如果可能的话,我需要一个明确的答案。 感谢

1 个答案:

答案 0 :(得分:1)

这应该很容易。要做到这一点,您需要记住以前使用过的功能。你的算法应该这样工作:

  1. 创建一个数组[0,1,2,3]
  2. Shuffle it
  3. 根据随机排序顺序运行您的功能。
  4. 如果您的随机订单为空,请从步骤1开始重复。