Unique Random Numbers : Random « Language Basics « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » Language Basics » Random 
Unique Random Numbers
  
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Unique Random Numbers</title>
<style type="text/css">
.head{font-family:verdana,arial,helvetica; font-weight:bold; font-size:20pt; color:#FF9900; filter:DropShadow(color=#000000, offX=2, offY=2, positive=1); width:100%}
.link{font-family:verdana,arial,helvetica; font-size:10pt; color:#000000}
.link:hover{font-family:verdana,arial,helvetica; font-size:10pt; color:#FF9900}
</style>
<!--BEGIN HEAD SECTION CODE-->
<script language="JavaScript">
// Unique Random Numbers
// -Picks a number of unique random numbers from an array
// (c) 2002 Premshree Pillai
// http://www.qiksearch.com
// http://premshree.resource-locator.com
// E-mail : qiksearch@rediffmail.com

function pickNums(nums, numArr)
{
  if(nums>numArr.length)
  {
    alert('You are trying to pick more elements from the array than it has!');
    return false;
  }
  var pickArr=new Array();
  var tempArr=numArr;
  for(var i=0; i<nums; i++)
  {
    pickArr[pickArr.length]=tempArr[Math.round((tempArr.length-1)*Math.random())];
    var temp=pickArr[pickArr.length-1];
    for(var j=0; j<tempArr.length; j++)
    {
      if(tempArr[j]==temp)
      {
        tempArr[j]=null;
        var tempArr2=new Array();
        for(var k=0; k<tempArr.length; k++)
          if(tempArr[k]!=null)
            tempArr2[tempArr2.length]=tempArr[k];
        tempArr=tempArr2;
        break;
      }
    }
  }
  return pickArr;
}    
</script>
<!--END HEAD SECTION CODE-->
</head>
<body bgcolor="#FFFFFF">
<center><span class="head">Unique Random Numbers</span></center>
<br>
<table width="400" align="center"><tr><td>

<font face="verdana,arial,helvetica" size="-1" color="#000000">
This JavaScript picks up a number of unique random elements from an array.
<br><br>For example; if you have an array <font face="courier">myArray</font> consisting of 10 elements and want to pick unique random elements. Suppose initially <font face="courier">myArray[3]</font> is picked randomly, then <font face="courier">myArray[3]</font> should not be picked again.
<br><br>If you want to pick numbers, call the function like this : <br><font face="courier">pickNums(4,myArray)</font>. This function will return an array consisting of unique random numbers. Thus you can store this array like this :<br><font face="courier">var anotherArray=pickNums(4,myArray)</font>.<br>You can now use this array for displaying the elements in different formats.

<br><br>Could be useful :-)
<br><br>Here's an example :

<!--BEGIN BODY SECTION CODE-->
<script language="JavaScript">
/* Add elements to this array */
var myArr = new Array("1","2","3","4","5","6","7","8","9");
var outArr=pickNums(5, myArr)/* Store the output */

/* Print Output */
/* Modify this part to suit your output needs */
document.write('<span style="background:#FFFFFF; border:#000000 solid 1px; padding:2px">');
for(var i=0; i<outArr.length; i++)
{
  document.write('<b>' + outArr[i'</b> ');
}
document.write('</span>');
</script>
<!--END BODY SECTION CODE-->

<br><br><a href="javascript:void(location.reload())" class="link">Reload</a> the page to see a set of another unique random numbers.
<hr color="#808080">
&#1692002 <a href="http://www.qiksearch.com" class="link">Premshree Pillai</a>.
</font>
</td></tr></table>

</body>
</html>

           
         
    
  
Related examples in the same category
1. Unique Random Sets
2. Math Random number: a random number between 0 and 1
3. Random number from 0 to 10: a random number from 0 to 10 using the random() and round()
4. Random link
5. A Random Ad Display Page
6. Random URL
7. Find the random number in a range
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.