473,387 Members | 1,834 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Shuffle array elements (3 to end of array) in random order

I'd like to reorganize the third, fourth, fifth and sixth, as well as any
elements thereafter in an array in random order:

var a = new Array('first','second','third','fourth','fifth','s ixth','etc')

In other words, the first, second and third element should remain in
position 0, 1 and 2, while the fourth, fifth and sixth, etc. should appear
in random order.

Can anyone recommend a method to do this?

May 6 '07 #1
9 5309
Lee
Tuxedo said:
>
I'd like to reorganize the third, fourth, fifth and sixth, as well as any
elements thereafter in an array in random order:

var a = new Array('first','second','third','fourth','fifth','s ixth','etc')

In other words, the first, second and third element should remain in
position 0, 1 and 2, while the fourth, fifth and sixth, etc. should appear
in random order.

Can anyone recommend a method to do this?
First you need to describe what you want in a way that isn't
self-contradictory. Then you should read this newsgroup's FAQ,
particularly the note box in this section:
http://www.jibbering.com/faq/#FAQ4_22
--

May 6 '07 #2
Lee wrote:

[...]
First you need to describe what you want in a way that isn't
self-contradictory. Then you should read this newsgroup's FAQ,
particularly the note box in this section:
http://www.jibbering.com/faq/#FAQ4_22
Thank you for pointing me to that specific FAQ including those noteboxes
with links to some pretty complex math!! I hope the answer hides somewhere
in there....

In which way do you mean my description is self-contradictory?

To be more precise, after reorgnizing the latter part of the array, i.e.
starting from 3 index, the intended result, or the properties of the new
array, could be for example:

'first','second','third','fourth','fifth','sixth', 'etc'
or
'first','second','third','fifth','fourth','sixth', 'etc'
or
'first','second','third','sixth','fifth','fourth', 'etc')
or
'first','second','third','etc','fourth','sixth','f ifth'
etc.

The first 3 elements should remain in the position of the original array,
while the remaining elements should be simply reshuffled in a random order,
appearinging only once in any one position.

What is best here? Would it be to create an array without the first 3
elements and then add them into a randomly generated array of specified
elements?
May 6 '07 #3
Tuxedo said the following on 5/6/2007 10:46 AM:
Lee wrote:

[...]
>First you need to describe what you want in a way that isn't
self-contradictory. Then you should read this newsgroup's FAQ,
particularly the note box in this section:
http://www.jibbering.com/faq/#FAQ4_22

Thank you for pointing me to that specific FAQ including those noteboxes
with links to some pretty complex math!! I hope the answer hides somewhere
in there....

In which way do you mean my description is self-contradictory?
"I want my array in random order but I want to control what is or is not
random" is self-contradictory.

<snip>
The first 3 elements should remain in the position of the original array,
while the remaining elements should be simply reshuffled in a random order,
appearinging only once in any one position.

What is best here? Would it be to create an array without the first 3
elements and then add them into a randomly generated array of specified
elements?
Yes.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
May 6 '07 #4
Randy Webb wrote:

[...]
"I want my array in random order but I want to control what is or is not
random" is self-contradictory.
That was not exactly what I meant, but what I did mean was for some but not
all elements of an array to be reorganized in random order. But I think you
understood by now that I was not referring to the entire array as such.
Yes.
Thanks for the tip, which by the sound of it, I guess must be easier than
randomly reorganise only a specified segment of the complete array.

My question is therefore reduced and simplified to: How can I randomly
reorganise the elements of the following array?

var a = new Array('fourth','fifth','sixth','etc')

May 6 '07 #5
Tuxedo wrote:
Thanks for the tip, which by the sound of it, I guess must be easier than
randomly reorganise only a specified segment of the complete array.
To answer myself, with some extra help from about.com
(http://javascript.about.com/library/blsort2.htm) the following solution
appears to work just fine:

function randOrd(){
return (Math.round(Math.random())-0.5);
}

var a = new Array('fourth','fifth','sixth','etc')
a.sort(randOrd)
a.unshift('first','second','third')
May 6 '07 #6
Lee
Tuxedo said:
>
Lee wrote:

[...]
>First you need to describe what you want in a way that isn't
self-contradictory. Then you should read this newsgroup's FAQ,
particularly the note box in this section:
http://www.jibbering.com/faq/#FAQ4_22

Thank you for pointing me to that specific FAQ including those noteboxes
with links to some pretty complex math!! I hope the answer hides somewhere
in there....

In which way do you mean my description is self-contradictory?
You said:

I'd like to reorganize the third, fourth, ...

In other words, the first, second and third element should remain ...

The "third" element appears both in the list to be reorganized and
in the list to remain in place.

Look through those links for references to shuffling. You'll find
code that you can copy and paste. Once you're familiar with it,
you can decide whether to modify it slightly to begin at the third
(or is it fourth?) position, or whether you want to split it before
you shuffle and rejoin afterwards.
--

May 6 '07 #7
Lee wrote:

[..]
In other words, the first, second and third element should remain ...
Yes. Maybe there was some confusion with regards to my definition of the
starting point.

[..]
Look through those links for references to shuffling. You'll find
code that you can copy and paste. Once you're familiar with it,
you can decide whether to modify it slightly to begin at the third
(or is it fourth?) position, or whether you want to split it before
you shuffle and rejoin afterwards.
Thank you for the tips!
May 6 '07 #8
In comp.lang.javascript message <f1*************@news.t-online.com>,
Sun, 6 May 2007 18:11:25, Tuxedo <tu****@mailinator.netposted:
>Tuxedo wrote:
>Thanks for the tip, which by the sound of it, I guess must be easier than
randomly reorganise only a specified segment of the complete array.
Possibly easier; but not otherwise better.

>To answer myself, with some extra help from about.com
(http://javascript.about.com/library/blsort2.htm) the following solution
appears to work just fine:

function randOrd(){
return (Math.round(Math.random())-0.5);
}

var a = new Array('fourth','fifth','sixth','etc')
a.sort(randOrd)
a.unshift('first','second','third')
That method was discussed here some years ago, as an example of amusing
but ludicrous programming.

The specification of Array.sort calls for repeatable comparisons; the
sort algorithm to be used is not defined, and may vary from browser to
browser, version to version. With non-repeatable comparison, the result
cannot be guaranteed : the sort algorithm might not even finish in some
systems.

An efficient shuffle of N elements takes time O(N), and uses O(N) calls
of Random. The sort algorithm will take time at least about O(NlogN)
calling Random O(2NlogN) times.
The first question you should consider is whether you actually need a
Shuffle. A Shuffle starts with all the elements present on some order
and ends with them all on an independent order, probably in the same
Array. You might be able to install the first three elements in direct
order, then the rest in random order.

For shuffle-in-place, it would be easier to keep the last three elements
unmoved, by doing a standard shuffle but lying about the length. So,
consider

function Random(X) {
return Math.floor(X*(Math.random()%1)) /* %1 : Opera */ }

function ShuffleX(Q, x) { var R, T, J
for (J=Q.length-1 -x ; J>0 ; J--)
{ R=Random(J+1) ; T=Q[J] ; Q[J]=Q[R] ; Q[R]=T }
return Q }

A = [1,2,3,4,5,6,7,8,9]
A = A.reverse()
ShuffleX(A, 3)
A = A.reverse()

In that, ShuffleX is the FAQ-cited standard (Knuth?) algorithm, modified
by the addition of the parameter x.

Now you can optimise by rewriting ShuffleX so that it works the other
way round, and omit the reversals.

It's a good idea to read the newsgroup c.l.j and its FAQ. See below.

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 IE 6
news:comp.lang.javascript FAQ <URL:http://www.jibbering.com/faq/index.html>.
<URL:http://www.merlyn.demon.co.uk/js-index.htmjscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/jscr/&c, FAQ items, links.
May 6 '07 #9
Dr J R Stockton wrote:

[..]
function Random(X) {
return Math.floor(X*(Math.random()%1)) /* %1 : Opera */ }

function ShuffleX(Q, x) { var R, T, J
for (J=Q.length-1 -x ; J>0 ; J--)
{ R=Random(J+1) ; T=Q[J] ; Q[J]=Q[R] ; Q[R]=T }
return Q }

A = [1,2,3,4,5,6,7,8,9]
A = A.reverse()
ShuffleX(A, 3)
A = A.reverse()

In that, ShuffleX is the FAQ-cited standard (Knuth?) algorithm, modified
by the addition of the parameter x.

Now you can optimise by rewriting ShuffleX so that it works the other
way round, and omit the reversals.
Not that I've seen the ludicrous about.com + unshift method fail on any
browser I've tested it on so far, but hey, your solution certainly sound
like the more sophisticated one!! Thanks for the detailed code example!

May 7 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

18
by: deko | last post by:
I have a counter file that records page hits - each hit is a UNIX timestamp in the file. But I'm only interested in page hits in the last 365 days. The below code creates an array from the file...
4
by: Frank & Janny Plaza | last post by:
I am trying to write a program in which the users will each enter their names and when all names have been entered, I want to randomly sort this list of names several times and then show the order in...
15
by: alanbe | last post by:
Greetings I am making a flashcard type application to help me in my TCP/IP protocols test. My instructor will test us periodically on how a device or networking function relates to the OSI...
22
by: Nhmiller | last post by:
Is there a way to do this? Thanks. Neil Cat Paintings At Carol Wilson Gallery http://www.carolwilsongallery.com
8
by: ljlevend2 | last post by:
If a property's type is an array and the property is exposed in a PropertyGrid, then the property can be expanded so that the user can view and edit the array elements. But, I've noticed that if...
24
by: RyanTaylor | last post by:
I have a final coming up later this week in my beginning Java class and my prof has decided to give us possible Javascript code we may have to write. Problem is, we didn't really cover JS and what...
4
by: kevincw01 | last post by:
Anyone have a clever way to retrieve for example, items 0-29 from an array of size N>29, in random order? The catch is that I dont want to print any items more than once and I dont want to miss...
2
by: Chiefy | last post by:
Hey, Im doing a project in C# and I need to be able to take an array (say StudentNames), randomise the contents, and then place them in the random order into a new array (randomStudentNames). ...
2
by: dniom | last post by:
Hi. Can you help me please? Is there any way to show a unique random item from an array, every time you refresh the page? In other words how do I show the items from an array in random order, one by...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.