Random list with rules - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:39:19Zhttp://stackoverflow.com/feeds/question/1080393http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080393/random-list-with-rules0Random list with rulesmandroid2009-07-03T18:23:54Z2009-07-03T19:03:21Z
<p>I'm trying to create a list of tasks that I've read from some text files and put them into lists. I want to create a master list of what I'm going to do through the day however I've got a few rules for this. </p>
<p>One list has separate daily tasks that don't depend on the order they are completed. I call this list 'daily'. I've got another list of tasks for my projects, but these do depend on the order completed. This list is called 'projects'. I have a third list of things that must be done at the end of the day. I call it 'endofday'.</p>
<p>So here are the basic rules.</p>
<p>A list of randomized tasks where daily tasks can be performed in any order, where project tasks may be randomly inserted into the main list at any position but must stay in their original order relative to each other, and end of day tasks appended to the main list.</p>
<p>I understand how to get a random number from random.randint(), appending to lists, reading files and all that......but the logic is giving me a case of 'hurty brain'. Anyone want to take a crack at this?</p>
<p>EDIT:</p>
<p>Ok I solved it on my own, but at least asking the question got me to picture it in my head. Here's what I did.</p>
<pre><code>random.shuffle(daily)
while projects:
daily.insert(random.randint(0,len(daily)), projects.pop(0))
random.shuffle(endofday)
daily.extend(endofday)
for x in daily: print x
</code></pre>
<p>Thanks for the answers, I'll give ya guys some kudos anyways!</p>
<p>EDIT AGAIN:</p>
<p>Crap I just realized that's not the right answer lol</p>
<p>LAST EDIT I SWEAR:</p>
<pre><code>position = []
random.shuffle(daily)
for x in range(len(projects)):
position.append(random.randint(0,len(daily)+x))
position.sort()
while projects:
daily.insert(position.pop(0), projects.pop(0))
random.shuffle(endofday)
daily.extend(endofday)
for x in daily: print x
</code></pre>
<p>I LIED:</p>
<p>I just thought about what happens when position has duplicate values and lo and behold my first test returned 1,3,2,4 for my projects. I'm going to suck it up and use the answerer's solution lol</p>
<p>OR NOT:</p>
<pre><code>position = []
random.shuffle(daily)
for x in range(len(projects)):
while 1:
pos = random.randint(0,len(daily)+x)
if pos not in position: break
position.append(pos)
position.sort()
while projects:
daily.insert(position.pop(0), projects.pop(0))
random.shuffle(endofday)
daily.extend(endofday)
for x in daily: print x
</code></pre>
http://stackoverflow.com/questions/1080393/random-list-with-rules/1080408#10804081Answer by unknown (yahoo) for Random list with rulesunknown (yahoo)2009-07-03T18:28:46Z2009-07-03T18:28:46Z<p>Use random.shuffle to shuffle a list</p>
<p>random.shuffle(["x", "y", "z"])</p>
http://stackoverflow.com/questions/1080393/random-list-with-rules/1080419#10804191Answer by mizipzor for Random list with rulesmizipzor2009-07-03T18:33:52Z2009-07-03T18:33:52Z<p>How to fetch a random element in a list using python:</p>
<pre><code>>>> import random
>>> li = ["a", "b", "c"]
>>> len = (len(li))-1
>>> ran = random.randint(0, len)
>>> ran = li[ran]
>>> ran
'b'
</code></pre>
<p>But it seems you're more curious about how to design this. If so, the python tag should probably not be there. If not, the question is probably to broad to get you any good answers code-wise.</p>
http://stackoverflow.com/questions/1080393/random-list-with-rules/1080422#10804223Answer by Alex Martelli for Random list with rulesAlex Martelli2009-07-03T18:36:07Z2009-07-03T19:03:21Z<p>First, copy and shuffle daily to initialize master:</p>
<pre><code>master = list(daily)
random.shuffle(master)
</code></pre>
<p>then (the interesting part!-) the alteration of master (to insert projects randomly but without order changes), and finally <code>random.shuffle(endofday); master.extend(endofday)</code>.</p>
<p>As I said the alteration part is the interesting one -- what about:</p>
<pre><code>def random_mix(seq_a, seq_b):
iters = [iter(seq_a), iter(seq_b)]
while True:
it = random.choice(iters)
try: yield it.next()
except StopIteration:
iters.remove(it)
it = iters[0]
for x in it: yield x
</code></pre>
<p>Now, the mixing step becomes just <code>master = list(random_mix(master, projects))</code></p>
<p>Performance is not ideal (lots of random numbers generated here, we could do with fewer, for example), but fine if we're talking about a few dozens or hundreds of items for example.</p>
<p>This insertion randomness is not ideal -- for that, the choice between the two sequences should not be equiprobable, but rather with probability proportional to their lengths. If that's important to you, let me know with a comment and I'll edit to fix the issue, but I wanted first to offer a simpler and more understandable version!-)</p>
<p><strong>Edit</strong>: thanks for the accept, let me complete the answer anyway with a different way of "random mixing preserving order" which does use the right probabilities -- it's only slightly more complicated because it cannot just call <code>random.choice</code>;-).</p>
<pre><code>def random_mix_rp(seq_a, seq_b):
iters = [iter(seq_a), iter(seq_b)]
lens = [len(seq_a), len(seq_b)]
while True:
r = random.randrange(sum(lens))
itindex = r < lens[0]
it = iters[itindex]
lens[itindex] -= 1
try: yield it.next()
except StopIteration:
iters.remove(it)
it = iters[0]
for x in it: yield x
</code></pre>
<p>Of course other optimization opportunities arise here -- since we're tracking the lengths anyway, we could rely on a length having gone down to zero rather than on try/except to detect that one sequence is finished and we should just exhaust the other one, etc etc. But, I wanted to show the version closest to my original one. Here's one exploiting this idea to optimize and simplify:</p>
<pre><code>def random_mix_rp1(seq_a, seq_b):
iters = [iter(seq_a), iter(seq_b)]
lens = [len(seq_a), len(seq_b)]
while all(lens):
r = random.randrange(sum(lens))
itindex = r < lens[0]
it = iters[itindex]
lens[itindex] -= 1
yield it.next()
for it in iters:
for x in it: yield x
</code></pre>
http://stackoverflow.com/questions/1080393/random-list-with-rules/1080440#10804401Answer by Kenny for Random list with rulesKenny2009-07-03T18:41:21Z2009-07-03T18:41:21Z<ol>
<li>Combine all 3 lists into a DAG</li>
<li>Perform all possible <a href="http://en.wikipedia.org/wiki/Topological%5Fsorting" rel="nofollow">topological sorts</a>, store each sort in a list.</li>
<li>Choose one from the list at random</li>
</ol>
http://stackoverflow.com/questions/1080393/random-list-with-rules/1080460#10804601Answer by mrusha for Random list with rulesmrusha2009-07-03T18:48:51Z2009-07-03T18:48:51Z<p>In order for the elements of the "project" list to stay in order, you could do the following:
Say you have 4 project tasks: "a,b,c,d". Then you know there are five spots where other, randomly chosen elements can be inserted (before and after each element, including the beginning and the end), while the ordering naturally stays the same.</p>
<p>Next, you can add five times a special element (e.g. "-:-") to the daily list. When you now shuffle the daily list, these special items, corresponding to "a,b,c,d" from above, are randomly placed. Now you simply have to insert the elements of the "projects" list sequentially for each special element "-:-". And you keep the ordering, yet have a completely random list regarding the tasks from the daily list.</p>