Language Basics JavaScript DHTML




Unique Random Sets


// Unique Random Sets Picker
// Based on : Unique Random Numbers
// -http://www.qiksearch.com/javascripts/random_numbers1.htm
// -Picks a number of unique random numbers from an array
// (c) 2002 Premshree Pillai
// http://www.qiksearch.com, http://javascript.qik.cjb.net
// E-mail : qiksearch@rediffmail.com
function pickNums(nums, numArr, pickArr, count, doFlag, iterations)
{
 iterations+=1;
 var currNum = Math.round((numArr.length-1)*Math.random());
 if(count!=0)
 {
  for(var i=0; i  {
   if(numArr[currNum]==pickArr[i])
   {
    doFlag=true;
    break;
   }
  }
 }
 if(!doFlag)
 {
  pickArr[count]=numArr[currNum]; // We create the array for use later
  count+=1;
 }
 if(iterations<(numArr.length*3)) // Compare for max iterations you want
 {
  if((count  {
   pickNums(nums, numArr, pickArr, count, doFlag, iterations);
  }
 }
 else
 {
  location.reload();
 }
}




Unique Random Sets





This JavaScript, based on Unique Random Numbers II, picks Unique Random Sets.


Here, there are more than one arrays (need not be of same length). First, we pick a number of unique random elements from the first array, numArr1 to form the array pickArr1. Now each element of pickArr1 picks another element from the second array numArr2, which again is unique and random. Thus we form the array pickArr2. Similarly each element of pickArr2 picks unique random elements from numArr3 to form pickArr3. 

i.e if the first element of pickArr1 picks the second element of numArr2, then no other element of pickArr1 should pick the second element of numArr2 again.


In effect what we are doing is picking equal number of unique random numbers from a number of arrays(In this exaple, 3 arrays) to form a number of unique random sets, containing number of elements same as the number of arrays.


Here's an example :






// (c) 2002 Premshree Pillai
// http://www.qiksearch.com, http://javascript.qik.cjb.net
// E-mail : qiksearch@rediffmail.com
//---------The First Array---------
var numArr1 = new Array("0","1","2","3","4","5","6","7","8","9"); // Add elements here
var pickArr1 = new Array(); // The array that will be formed
var count1=0;
var doFlag1=false;
var iterations1=0;
pickNums(5, numArr1, pickArr1, count1, doFlag1, iterations1);
//---------The Second Array---------
var numArr2 = new Array("10","11","12","13","14","15","16","17","18","19"); // Add elements here
var pickArr2 = new Array(); // The array that will be formed
var count2=0;
var doFlag2=false;
var iterations2=0;
pickNums(5, numArr2, pickArr2, count2, doFlag2, iterations2);
//---------The Third Array---------
var numArr3 = new Array("20","21","22","23","24","25","26","27","28","29"); // Add elements here
var pickArr3 = new Array(); // The array that will be formed
var count3=0;
var doFlag3=false;
var iterations3=0;
pickNums(5, numArr3, pickArr3, count3, doFlag3, iterations3);
/* 
   To add more arrays, copy the array block, like the one above.
   Just modify the variable names. For example for a fourth array,
   copy the third array block, change the variable names numArr3
   to numArr4. Similarly, modify the name of all variables. 
   You will also have to modify the writeGen() function below to
   include more arrays.
*/
// This function writes the output
function writeGen(maxNums)
{
 for(var i=0; i {
  document.write('' + pickArr1[i] + ', ' + pickArr2[i] + ', ' + pickArr3[i] + '
');
 }
}
/*
  Modify the above function to suit your
  output needs.
*/
new writeGen(5);




Reload the page to see a set of another unique random sets. (The page may take time to load)




© 2002 Premshree Pillai.