active questions tagged random+algorithm - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T10:22:39Zhttp://stackoverflow.com/feeds/tag/random+algorithmhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/137783/given-a-function-which-produces-a-random-integer-in-the-range-1-to-5-write-a-fun78Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7praveen2008-09-26T04:33:32Z2009-12-05T07:27:01Z
<ol>
<li>what is simple solution </li>
<li>what is effective solution to less minimum memory and(or) cpu speed?</li>
</ol>
http://stackoverflow.com/questions/1824633/statistical-mathematics-issues3Statistical mathematics issuesnhaa1232009-12-01T07:54:11Z2009-12-03T16:42:17Z
<p>Hello,</p>
<p>I'm developing a Texas Hold 'em hand-range equity evaluator, which evaluates hand-distributions with Monte Carlo -simulation. I've faced two annoying problems which behaviors I cannot give any reason.</p>
<p><b>Problem #1:</b></p>
<p>In a nut shell, the evaluator works by first picking up hands from player's hand-distributions. Say, that we have the following:</p>
<pre>AA - 6 hands
KK - 6 hands</pre>
<p>We pick up a board cards and after that, one hand randomly from both players which does not collide with the board cards.<br />
The given example gives the following equities, which are correct:</p>
<pre>AA = ~81.95%
KK = ~18.05%</pre>
<p>Now the problem. If the evaluator first chooses the hole cards and the board cards after that, this doesn't work. Then I get something like this:</p>
<pre>AA = ~82.65%
KK = ~17.35&</pre>
<p>Why does it get biased? What does it matter, if one chooses hole cards or board cards first? Obviously it does, but cannot understand why.</p>
<p><b>Problem #2:</b></p>
<p>If I have ten hand-distributions with the following ranges:</p>
<pre>AA
KK+
QQ+
JJ+
TT+
99+
88+
77+
66+
55+</pre>
<p>my evaluator is very slow. This is due the fact that when choosing hole cards from the distributions, there's a lot of collisions. There's many trials before we get ten hole cards and a board, which does not collide. So, I changed the method how the evaluator chooses a hand from the distribution:</p>
<pre><code>
// Original - works.
void HandDistribution::Choose(unsigned __int64 &usedCards, bool &collided)
{
_pickedHand = _hands[(*Random)()];
collided = (_pickedHand & usedCards) != 0;
usedCards |= _pickedHand;
}
// Modified - Doesn't work; biased equities.
void HandDistribution::Choose(unsigned __int64 &usedCards, bool &collided)
{
// Let's try to pick-up a hand from this distribution ten times, before
// we give up.
// NOTE: It doesn't matter, how many attempts there are (except one). 2 or 10,
// same biased results.
for (unsigned int attempts = 0; i < 10; ++i) {
_pickedHand = _hands[(*Random)()];
collided = (_pickedHand & usedCards) != 0;
if (!collided) {
usedCards |= _pickedHand;
return;
}
}
// All the picks collided with other hole cards...
}
</code></pre>
<p>The alternative method is much faster, since there are not so many collisions anymore. However, the results are VERY biased. Why? What does it matter, if the evaluator chooses a hand by one attempt or several? Again, obviously it does, but I cannot figure out why.</p>
<p><b>Edit:</b></p>
<p>FYI, I am using Boost's random number generator, more precisely <i>boost::lagged_fibonacci607</i>. Though, the same behavior occurs with mersenne twister as well.</p>
<p>Here's a the code as it is:</p>
<pre><code>
func Calculate()
{
for (std::vector<HandDistribution *>::iterator it = _handDistributions.begin(); it != _handDistributions.end(); ++it) {
(*it)->_equity = 0.0;
(*it)->_wins = 0;
(*it)->_ties = 0.0;
(*it)->_rank = 0;
}
std::bitset<32> bsBoardCardsHi(static_cast<unsigned long>(_boardCards >> 32)),
bsBoardCardsLo(static_cast<unsigned long>(_boardCards & 0xffffffff));
int cardsToDraw = 5 - (bsBoardCardsHi.count() + bsBoardCardsLo.count()), count = 0;
HandDistribution *hd_first = *_handDistributions.begin(), *hd_current, *hd_winner;
unsigned __int64 deadCards = 0;
boost::shared_array<unsigned __int64> boards = boost::shared_array<unsigned __int64>(new unsigned __int64[2598960]);
memset(boards.get(), 0, sizeof(unsigned __int64) * 2598960);
hd_current = hd_first;
do {
deadCards |= hd_current->_deadCards; // All the unary-hands.
hd_current = hd_current->_next;
} while (hd_current != hd_first);
if (cardsToDraw > 0)
for (int c1 = 1; c1 < 49 + (5 - cardsToDraw); ++c1)
if (cardsToDraw > 1)
for (int c2 = c1 + 1; c2 < 50 + (5 - cardsToDraw); ++c2)
if (cardsToDraw > 2)
for (int c3 = c2 + 1; c3 < 51 + (5 - cardsToDraw); ++c3)
if (cardsToDraw > 3)
for (int c4 = c3 + 1; c4 < 52 + (5 - cardsToDraw); ++c4)
if (cardsToDraw > 4)
for (int c5 = c4 + 1; c5 < 53; ++c5) {
boards[count] = static_cast<unsigned __int64>(1) << c1
| static_cast<unsigned __int64>(1) << c2
| static_cast<unsigned __int64>(1) << c3
| static_cast<unsigned __int64>(1) << c4
| static_cast<unsigned __int64>(1) << c5;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[count] = static_cast<unsigned __int64>(1) << c1
| static_cast<unsigned __int64>(1) << c2
| static_cast<unsigned __int64>(1) << c3
| static_cast<unsigned __int64>(1) << c4;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[count] = static_cast<unsigned __int64>(1) << c1
| static_cast<unsigned __int64>(1) << c2
| static_cast<unsigned __int64>(1) << c3;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[count] = static_cast<unsigned __int64>(1) << c1
| static_cast<unsigned __int64>(1) << c2;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[count] = static_cast<unsigned __int64>(1) << c1;
if ((boards[count] & deadCards) == 0)
++count;
}
else {
boards[0] = _boardCards;
count = 1;
}
_distribution = boost::uniform_int<>(0, count - 1);
boost::variate_generator<boost::lagged_fibonacci607&, boost::uniform_int<> > Random(_generator, _distribution);
wxInitializer initializer;
Update *upd = new Update(this);
_trial = 0;
_done = false;
if (upd->Create() == wxTHREAD_NO_ERROR)
upd->Run();
hd_current = hd_first;
::QueryPerformanceCounter((LARGE_INTEGER *) &_timer);
do {
hd_current = hd_first;
unsigned __int64 board = boards[Random()] | _boardCards, usedCards = _deadCards | board;
bool collision;
do {
hd_current->Choose(usedCards, collision);
hd_current = hd_current->_next;
} while (hd_current != hd_first && !collision);
if (collision) {
hd_first = hd_current->_next;
continue;
}
unsigned int best = 0, s = 1;
// Evaluate all hands.
do {
hd_current->_pickedHand |= board;
unsigned long i, l = static_cast<unsigned long>(hd_current->_pickedHand >> 32);
int p;
bool f = false;
if (_BitScanForward(&i, l)) {
p = _evaluator[53 + i + 32];
l &= ~(static_cast<unsigned long>(1) << i);
f = true;
}
if (f)
while (_BitScanForward(&i, l)) {
l &= ~(static_cast<unsigned long>(1) << i);
p = _evaluator[p + i + 32];
}
l = static_cast<unsigned long>(hd_current->_pickedHand & 0xffffffff);
if (!f) {
_BitScanForward(&i, l);
p = _evaluator[53 + i];
l &= ~(static_cast<unsigned long>(1) << i);
}
while (_BitScanForward(&i, l)) {
l &= ~(static_cast<unsigned long>(1) << i);
p = _evaluator[p + i];
}
hd_current->_rank = p;
if (p > best) {
hd_winner = hd_current;
s = 1;
best = p;
} else if (p == best)
++s;
hd_current = hd_current->_next;
} while (hd_current != hd_first);
if (s > 1) {
for (std::vector<HandDistribution *>::iterator it = _handDistributions.begin(); it != _handDistributions.end(); ++it) {
if ((*it)->_rank == best) {
(*it)->_ties += 1.0 / s;
(*it)->_equity += 1.0 / s;
}
}
} else {
++hd_winner->_wins;
++hd_winner->_equity;
}
++_trial;
hd_first = hd_current->_next;
} while (_trial < trials);
}
</code></pre>
http://stackoverflow.com/questions/1840618/fast-random-selection-algorithm1Fast random selection algorithmmomeara2009-12-03T15:26:20Z2009-12-03T15:32:46Z
<p>Given an array of true/false values, what is the most efficient algorithm to select an index with a true value at random. </p>
<p>A sketch simple algorithm is</p>
<pre><code>a <- the array
c <- 0
for i in a:
if a[i] is true: c++
e <- random number in (0, c-1)
j <- 0
for i in e:
while j is false: j++
return j
</code></pre>
<p>Can anyone come up with a faster algorithm? Maybe there is a way to only walk through the list once even if the number of true elements is not known at first? </p>
http://stackoverflow.com/questions/1769680/random-prime-number7Random prime numbergmile2009-11-20T10:45:51Z2009-11-20T13:33:16Z
<p>How do I quickly generate a random prime number, that is for sure 1024 bit long? </p>
http://stackoverflow.com/questions/1758315/fastest-way-to-pick-a-random-element-from-a-list-that-fulfills-certain-condition1Fastest way to pick a random element from a list that fulfills certain conditionDavid Robles2009-11-18T19:08:46Z2009-11-19T01:02:56Z
<p>I need to pick a random element from a list, that fulfills certain condition. The approach I've been using works, but I'm sure is not every efficient. What would be the most efficient way to do it?</p>
<p>The following code is inside a while (true) loop, so obviously is not very efficient to shuffle the list on every iteration.</p>
<pre><code>Foo randomPick = null;
Collections.shuffle(myList);
for (Foo f : myList) {
if (f.property) {
randomPick = f;
break;
}
}
</code></pre>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/124671/picking-a-random-element-from-a-set5Picking a random element from a setClue Less2008-09-24T00:12:17Z2009-11-08T05:41:52Z
<p>How do I pick a random element from a set?
I'm particularly interested in picking a random element from a
HashSet or a LinkedHashSet, in Java.
Solutions for other languages are also welcome. </p>
http://stackoverflow.com/questions/1691627/algorithm-to-generate-random-order-of-elements3Algorithm to generate random order of elementsAnte2009-11-07T01:43:19Z2009-11-07T14:09:38Z
<p>How to randomize order of approximately 20 elements with lowest complexity? (generating random permutations)</p>
http://stackoverflow.com/questions/1608181/unique-random-numbers-in-an-integer-array-in-the-c-programming-language5Unique random numbers in an integer array in the C programming language.Chris_452009-10-22T15:51:13Z2009-10-24T00:32:37Z
<p>How do I fill an integer array with unique values (no duplicates) in C?</p>
<pre><code>int vektor[10];
for (i = 0; i < 10; i++) {
vektor[i] = rand() % 100 + 1;
}
//No uniqueness here
</code></pre>
http://stackoverflow.com/questions/1428110/non-repeating-pseudo-random-number-stream-with-clumping1Non-repeating pseudo random number stream with 'clumping' OldCodeOrder2009-09-15T16:05:15Z2009-10-07T14:07:57Z
<p>I'm looking for a method to generate a pseudorandom stream with a somewhat odd property - I want clumps of nearby numbers. </p>
<p>The tricky part is, I can only keep a limited amount of state no matter how large the range is. There are algorithms that give a sequence of results with minimal state (linear congruence?) </p>
<p>Clumping means that there's a higher probability that the next number will be close rather than far. </p>
<p>Example of a desirable sequence (mod 10): 1 3 9 8 2 7 5 6 4<br />
I suspect this would be more obvious with a larger stream, but difficult to enter by hand.</p>
<p>Update:<br />
I don't understand why it's impossible, but yes, I am looking for, as Welbog summarized:</p>
<ul>
<li>Non-repeating </li>
<li>Non-Tracking </li>
<li>"Clumped" </li>
</ul>
http://stackoverflow.com/questions/1474382/a-good-and-simple-measure-of-randomness7A Good and SIMPLE Measure of Randomnesslkessler2009-09-24T21:56:05Z2009-09-27T17:05:43Z
<p>What is the best algorithm to take a long sequence of integers (say 100,000 of them) and return a measurement of how random the sequence is?</p>
<p>The function should return a single result, say 0 if the sequence is not all all random, up to, say 1 if perfectly random. It can give something in-between if the sequence is somewhat random, e.g. 0.95 might be a reasonably random sequence, whereas 0.50 might have some non-random parts and some random parts.</p>
<p>If I were to pass the first 100,000 digits of Pi to the function, it should give a number very close to 1. If I passed the sequence 1, 2, ... 100,000 to it, it should return 0.</p>
<p>This way I can easily take 30 sequences of numbers, identify how random each one is, and return information about their relative randomness.</p>
<p>Is there such an animal?</p>
http://stackoverflow.com/questions/1026327/what-common-algorithms-are-used-for-cs-rand1What common algorithms are used for C's rand()?Azrael2009-06-22T09:47:11Z2009-09-18T20:53:24Z
<p>I understand that the C specification does not give any specification about the specific implementation of <code>rand()</code>. What different algorithms are commonly used on different major platforms? How do they differ?</p>
http://stackoverflow.com/questions/1425184/random-and-unique-subsets-generation3random and unique subsets generationCesar2009-09-15T04:57:41Z2009-09-15T08:02:11Z
<p>Lets say we have numbers from 1 to 25 and we have to choose sets of 15 numbers.</p>
<p>The possible sets are, if i'm right 3268760.</p>
<p>Of those 3268760 options, you have to generate say 100000</p>
<p>What would be the best way to generate 100000 unique and random of that subsets?</p>
<p>Is there a way, an algorithm to do that?</p>
<p>If not, what would be the best option to detect duplicates? </p>
<p>I'm planning to do this on PHP but a general solution would be enough,
and any reference not to much 'academic' (more practical) would help me a lot.</p>
http://stackoverflow.com/questions/1306441/how-can-i-generate-pseudo-random-readable-strings-in-java8How can I generate pseudo-random "readable" strings in Java?Jared2009-08-20T14:07:19Z2009-08-20T17:39:53Z
<p>Generating a truly random string of a given length is a fairly straightforward (and already-well-covered) task.</p>
<p>However; I'd like to generate a "pseudo" random string with the additional constraint that it be relatively easily readable (to a native-English reader.)</p>
<p>I think another way to say this is to say that the generated string should consist of "recognizable syllables." For example, "akdjfwv" is a random string, but it's not recognizable at all. "flamyom"; however, is very "recognizable" (even though it's nonsense.)</p>
<p>Obviously, one could make a long list of "recognizable syllables," and then randomly select them.</p>
<p>But, is there a better way to do something like programmatically generate a "recognizable syllable," or generate a "syllable" and then test it to see if it's "recognizable"?</p>
<p>I can think of several ways to go about this implementation, but if someone has already implemented it (preferrably in Java or C#,) I'd rather re-use their work.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1133942/what-is-the-most-efficient-way-to-pick-a-random-card-from-a-deck-when-some-cards1what is the most efficient way to pick a random card from a deck when some cards are unusable?Claudiu2009-07-15T20:47:58Z2009-07-19T23:37:16Z
<p>I have an array which tells whether a card is in use:</p>
<pre><code>int used[52];
</code></pre>
<p>This is a terrible way to pick a random card if I have many used cards:</p>
<pre><code>do {
card = rand() % 52;
} while (used[card]);
</code></pre>
<p>since if I have only 3-4 unused cards, it'll take forever to find them.</p>
<p>I came up with this:</p>
<pre><code> int card;
int k = 0;
int numUsed = 0;
for (k=0; k < 52; ++k) {
if (used[k]) numUsed += 1;
}
if (numUsed == 52) return -1;
card = rand() % (52 - numUsed);
for (k=0; k < 52; ++k) {
if (used[k]) continue;
if (card == 0) return k;
card -= 1;
}
</code></pre>
<p>which I guess works better if the deck is full, but works worse when the deck is empty since I have to go through two for loops.</p>
<p>What's the most efficient way to do this?</p>
http://stackoverflow.com/questions/526255/probability-distribution-in-python4Probability distribution in PythonNicholas Leonard2009-02-08T19:52:22Z2009-06-27T21:12:33Z
<p>I have a bunch of keys that each have an unlikeliness variable. I want to randomly choose one of these keys, yet I want it to be more unlikely for unlikely (key, values) to be chosen than a less unlikely (a more likely) object. I am wondering if you would have any suggestions, preferably an existing python module that I could use, else I will need to make it myself.</p>
<p>I have checked out the random module; it does not seem to provide this.</p>
<p>I have to make such choices many millions of times for 1000 different sets of objects each containing 2,455 objects. Each set will exchange objects among each other so the random chooser needs to be dynamic. With 1000 sets of 2,433 objects, that is 2,433 million objects; low memory consumption is crucial. And since these choices are not the bulk of the algorithm, I need this process to be quite fast; CPU-time is limited.</p>
<p>Thx </p>
<p>Update:</p>
<p>Ok, I tried to consider your suggestions wisely, but time is so limited... </p>
<p>I looked at the binary search tree approach and it seems too risky (complex and complicated). The other suggestions all resemble the ActiveState recipe. I took it and modified it a little in the hope of making more efficient:</p>
<pre><code>def windex(dict, sum, max):
'''an attempt to make a random.choose() function that makes
weighted choices accepts a dictionary with the item_key and
certainty_value as a pair like:
>>> x = [('one', 20), ('two', 2), ('three', 50)], the
maximum certainty value (max) and the sum of all certainties.'''
n = random.uniform(0, 1)
sum = max*len(list)-sum
for key, certainty in dict.iteritems():
weight = float(max-certainty)/sum
if n < weight:
break
n = n - weight
return key
</code></pre>
<p>I am hoping to get an efficiency gain from dynamically maintaining the sum of certainties and the maximum certainty. Any further suggestions are welcome. You guys saves me so much time and effort, while increasing my effectiveness, it is crazy. Thx! Thx! Thx!</p>
<p>Update2:</p>
<p>I decided to make it more efficient by letting it choose more choices at once. This will result in an acceptable loss in precision in my algo for it is dynamic in nature. Anyway, here is what I have now:</p>
<pre><code>def weightedChoices(dict, sum, max, choices=10):
'''an attempt to make a random.choose() function that makes
weighted choices accepts a dictionary with the item_key and
certainty_value as a pair like:
>>> x = [('one', 20), ('two', 2), ('three', 50)], the
maximum certainty value (max) and the sum of all certainties.'''
list = [random.uniform(0, 1) for i in range(choices)]
(n, list) = relavate(list.sort())
keys = []
sum = max*len(list)-sum
for key, certainty in dict.iteritems():
weight = float(max-certainty)/sum
if n < weight:
keys.append(key)
if list: (n, list) = relavate(list)
else: break
n = n - weight
return keys
def relavate(list):
min = list[0]
new = [l - min for l in list[1:]]
return (min, new)
</code></pre>
<p>I haven't tried it out yet. If you have any comments/suggestions, please do not hesitate. Thx!</p>
<p>Update3:</p>
<p>I have been working all day on a task-tailored version of Rex Logan's answer. Instead of a 2 arrays of objects and weights, it is actually a special dictionary class; which makes things quite complex since Rex's code generates a random index... I also coded a test case that kind of resembles what will happen in my algo (but I can't really know until I try!). The basic principle is: the more a key is randomly generated often, the more unlikely it will be generated again: </p>
<pre><code>import random, time
import psyco
psyco.full()
class ProbDict():
"""
Modified version of Rex Logans RandomObject class. The more a key is randomly
chosen, the more unlikely it will further be randomly chosen.
"""
def __init__(self,keys_weights_values={}):
self._kw=keys_weights_values
self._keys=self._kw.keys()
self._len=len(self._keys)
self._findSeniors()
self._effort = 0.15
self._fails = 0
def __iter__(self):
return self.next()
def __getitem__(self, key):
return self._kw[key]
def __setitem__(self, key, value):
self.append(key, value)
def __len__(self):
return self._len
def next(self):
key=self._key()
while key:
yield key
key = self._key()
def __contains__(self, key):
return key in self._kw
def items(self):
return self._kw.items()
def pop(self, key):
try:
(w, value) = self._kw.pop(key)
self._len -=1
if w == self._seniorW:
self._seniors -= 1
if not self._seniors:
#costly but unlikely:
self._findSeniors()
return [w, value]
except KeyError:
return None
def popitem(self):
return self.pop(self._key())
def values(self):
values = []
for key in self._keys:
try:
values.append(self._kw[key][1])
except KeyError:
pass
return values
def weights(self):
weights = []
for key in self._keys:
try:
weights.append(self._kw[key][0])
except KeyError:
pass
return weights
def keys(self, imperfect=False):
if imperfect: return self._keys
return self._kw.keys()
def append(self, key, value=None):
if key not in self._kw:
self._len +=1
self._kw[key] = [0, value]
self._keys.append(key)
else:
self._kw[key][1]=value
def _key(self):
for i in range(int(self._effort*self._len)):
ri=random.randint(0,self._len-1) #choose a random object
rx=random.uniform(0,self._seniorW)
rkey = self._keys[ri]
try:
w = self._kw[rkey][0]
if rx >= w: # test to see if that is the value we want
w += 1
self._warnSeniors(w)
self._kw[rkey][0] = w
return rkey
except KeyError:
self._keys.pop(ri)
# if you do not find one after 100 tries then just get a random one
self._fails += 1 #for confirming effectiveness only
for key in self._keys:
if key in self._kw:
w = self._kw[key][0] + 1
self._warnSeniors(w)
self._kw[key][0] = w
return key
return None
def _findSeniors(self):
'''this function finds the seniors, counts them and assess their age. It
is costly but unlikely.'''
seniorW = 0
seniors = 0
for w in self._kw.itervalues():
if w >= seniorW:
if w == seniorW:
seniors += 1
else:
seniorsW = w
seniors = 1
self._seniors = seniors
self._seniorW = seniorW
def _warnSeniors(self, w):
#a weight can only be incremented...good
if w >= self._seniorW:
if w == self._seniorW:
self._seniors+=1
else:
self._seniors = 1
self._seniorW = w
def test():
#test code
iterations = 200000
size = 2500
nextkey = size
pd = ProbDict(dict([(i,[0,i]) for i in xrange(size)]))
start = time.clock()
for i in xrange(iterations):
key=pd._key()
w=pd[key][0]
if random.randint(0,1+pd._seniorW-w):
#the heavier the object, the more unlikely it will be removed
pd.pop(key)
probAppend = float(500+(size-len(pd)))/1000
if random.uniform(0,1) < probAppend:
nextkey+=1
pd.append(nextkey)
print (time.clock()-start)*1000/iterations, "msecs / iteration with", pd._fails, "failures /", iterations, "iterations"
weights = pd.weights()
weights.sort()
print "avg weight:", float(sum(weights))/pd._len, max(weights), pd._seniorW, pd._seniors, len(pd), len(weights)
print weights
test()
</code></pre>
<p>Any comments are still welcome. @Darius: your binary trees are too complex and complicated for me; and I do not think its leafs can be removed efficiently... Thx all</p>
http://stackoverflow.com/questions/1030921/comparison-method-for-sorting-that-shuffles-equal-elements-randomly2Comparison method for sorting that shuffles equal elements randomlycbp2009-06-23T06:31:22Z2009-06-23T07:59:19Z
<p>Here's a puzzle for you.</p>
<p>I want to change the following comparison method, so that when two items are considered equal, they will be shuffled randomly.</p>
<pre><code>myList.Sort( (x, y) => x.Score.CompareTo(y.Score) );
</code></pre>
<p>I could imagine that this scenario would be useful when ordering search results if you didn't want to give preference to one result over another when their scores are the same.</p>
<p>Anyone want to give it a go?</p>
<p>Here was my first attempt at a solution, but it doesn't work. I'll let you figure out why.</p>
<pre><code>class RandomizeWhenEqualComparer<T> : IComparer<T>
{
private readonly Func<T, T, int> _comparer;
public int Compare(T x, T y)
{
if (x.Equals(y)) return 0;
int result = _comparer(x, y);
if (result != 0) return result;
double random = StaticRandom.NextDouble();
return (random < .5) ? -1 : 1;
}
public RandomizeWhenEqualComparer(Func<T, T, int> comparer)
{
_comparer = comparer;
}
}
</code></pre>
http://stackoverflow.com/questions/366849/generating-random-fixed-length-permutations-of-a-string1Generating random fixed length permutations of a stringSridhar Iyer2008-12-14T19:07:18Z2009-06-22T16:09:05Z
<p>Lets say my alphabet contains X letters and my language supports only Y letter words (Y < X ofcourse). I need to generate all the words possible in random order.</p>
<p>E.g.
Alphabet=a,b,c,d,e,f,g
Y=3</p>
<p>So the words would be:
aaa
aab
aac
aba
..
bbb
ccc
..
(the above should be generated in random order)</p>
<p>The trivial way to do it would be to generate the words and then randomize the list. I DONT want to do that. I want to generate the words in random order.</p>
<p>rondom(n)=letter[x].random(n-1) will not work because then you'll have a list of words starting with letter[x].. which will make the list not so random.</p>
<p>Any code/pseudocode appreciated.</p>
http://stackoverflow.com/questions/946361/adjust-algorithm-for-generating-random-strength-values3Adjust algorithm for generating random strength valuesmarco92w2009-06-03T18:24:51Z2009-06-04T14:42:19Z
<p>A few days ago, <a href="http://stackoverflow.com/questions/921570/generate-random-player-strengths-in-a-pyramid-structure-php">you helped me to find out an algorithm for generating random strength values in an online game (thx especially John Rasch)</a>.</p>
<pre><code>function getRandomStrength($quality) {
$rand = mt_rand()/mt_getrandmax();
$value = round(pow(M_E, ($rand - 1.033) / -0.45), 1);
return $value;
}
</code></pre>
<p>This function generates values between 1.1 and 9.9. Now I want to adjust this function so that it gives me values of the same probability but in another interval, e.g. 1.5 to 8.0. It would be perfect if you could achieve this with additional parameters.</p>
<p>It would be great if you could help me. Thanks in advance!</p>
http://stackoverflow.com/questions/872563/efficient-algorithm-to-randomly-select-items-with-frequency5Efficient algorithm to randomly select items with frequencyrampion2009-05-16T14:48:41Z2009-05-18T03:47:14Z
<p>Given an array of <code>n</code> word-frequency pairs:</p>
<pre>[ (w<sub>0</sub>, f<sub>0</sub>), (w<sub>1</sub>, f<sub>1</sub>), ..., (w<sub>n-1</sub>, f<sub>n-1</sub>) ]</pre>
<p>where <code>w<sub>i</sub></code> is a word, <code>f<sub>i</sub></code> is an integer frequencey, and the sum of the frequencies <code>∑f<sub>i</sub> = m</code>,</p>
<p>I want to use a pseudo-random number generator (pRNG) to select <code>p</code> words <code>w<sub>j<sub>0</sub></sub>, w<sub>j<sub>1</sub></sub>, ..., w<sub>j<sub>p-1</sub></sub></code> such that
the probability of selecting any word is proportional to its frequency:</p>
<pre>P(w<sub>i</sub> = w<sub>j<sub>k</sub></sub>) = P(i = j<sub>k</sub>) = f<sub>i</sub> / m</pre>
<p>(Note, this is selection with replacement, so the same word <em>could</em> be chosen every time).</p>
<p>I've come up with three algorithms so far:</p>
<ol>
<li><p>Create an array of size <code>m</code>, and populate it so the first <code>f<sub>0</sub></code> entries are <code>w<sub>0</sub></code>, the next <code>f<sub>1</sub></code> entries are <code>w<sub>1</sub></code>, and so on, so the last <code>f<sub>p-1</sub></code> entries are <code>w<sub>p-1</sub></code>.<pre>[ w<sub>0</sub>, ..., w<sub>0</sub>, w<sub>1</sub>,..., w<sub>1</sub>, ..., w<sub>p-1</sub>, ..., w<sub>p-1</sub> ]</pre>
Then use the pRNG to select <code>p</code> indices in the range <code>0...m-1</code>, and report the words stored at those indices.<br />
This takes <code>O(n + m + p)</code> work, which isn't great, since <code>m</code> can be much much larger than n.</p></li>
<li><p>Step through the input array once, computing<pre>m<sub>i</sub> = ∑<sub>h≤i</sub>f<sub>h</sub> = m<sub>i-1</sub> + f<sub>i</sub></pre>
and after computing <code>m<sub>i</sub></code>, use the pRNG to generate a number <code>x<sub>k</sub></code> in the range <code>0...m<sub>i</sub>-1</code> for each <code>k</code> in <code>0...p-1</code>
and select <code>w<sub>i</sub></code> for <code>w<sub>j<sub>k</sub></sub></code> (possibly replacing the current value of <code>w<sub>j<sub>k</sub></sub></code>) if <code>x<sub>k</sub> < f<sub>i</sub></code>.<br />
This requires <code>O(n + np)</code> work.</p></li>
<li>Compute <code>m<sub>i</sub></code> as in algorithm 2, and generate the following array on n word-frequency-partial-sum triples:<pre>[ (w<sub>0</sub>, f<sub>0</sub>, m<sub>0</sub>), (w<sub>1</sub>, f<sub>1</sub>, m<sub>1</sub>), ..., (w<sub>n-1</sub>, f<sub>n-1</sub>, m<sub>n-1</sub>) ]</pre>
and then, for each k in <code>0...p-1</code>, use the pRNG to generate a number <code>x<sub>k</sub></code> in the range <code>0...m-1</code> then do binary search on the array of triples to find the <code>i</code> s.t. <code>m<sub>i</sub>-f<sub>i</sub> ≤ x<sub>k</sub> < m<sub>i</sub></code>, and select <code>w<sub>i</sub></code> for <code>w<sub>j<sub>k</sub></sub></code>.<br />
This requires <code>O(n + p log n)</code> work.</li>
</ol>
<p><strong>My question is</strong>: Is there a more efficient algorithm I can use for this, or are these as good as it gets?</p>
http://stackoverflow.com/questions/860100/implementing-shuffle-on-the-celestial-jukebox3Implementing shuffle on the celestial jukebox caffiend2009-05-13T19:59:33Z2009-05-14T02:16:44Z
<p>How would one implement shuffle for the "Celestial Jukebox"? </p>
<p>More precisely, at each time t, return an uniform random number between 0..n(t), such that there are no repeats in the entire sequence, with n() increasing over time.</p>
<p>For the concrete example, assume a flat-rate music service which allows playing any song in the catalog by a 0 based index number. Every so often, new songs are added which increase range of index numbers. The goal is to play a new song each time (assuming no duplicates in the catalog). </p>
<p>an ideal solution would be feasible on existing hardware - how would I shoehorn a list of six million songs in 8MB of DRAM? Similarly, the high song count exacerbates O(n) selection timings. </p>
<p>-- For an LCG generator, given a partially exhausted LCG on 0..N<sub>0</sub>, can that be translated to a different LCG on 0..N<sub>1</sub> (where N1 > N0), that doen't repeat the exhausted sequence.<br />
-- Checking if a particular song has already been played seems to rapidly grow out of hand, although this might be the only way ? Is there an efficient data structure for this? </p>
http://stackoverflow.com/questions/632760/advertising-rotation-whats-the-best-to-determine-when-and-what-ad-should-be-dis0Advertising rotation: What's the best to determine when and what ad should be displayed on the page?Darryl Hein2009-03-11T00:00:12Z2009-04-29T00:26:57Z
<p>A client I'm creating a site for wants a custom advertising "engine". The plan is to have a few ads on the site and fill the rest with Google Adsense until all the spots are full.</p>
<p>My problem is how to determine which ad to dipslay. (Assume for now that I only have 1 ad placement.) My thinking was I'd have a table with:</p>
<ul>
<li>year</li>
<li>month</li>
<li>impressions for the month (0 for unlimited)</li>
<li>used impressesion</li>
<li>clients</li>
<li>HTML code to display ad</li>
</ul>
<p>I could do something like to get the ads:</p>
<pre><code>SELECT *
FROM ad
WHERE impressions > used_impressions
OR impressesions = 0
ORDER BY RAND()
LIMIT 1
</code></pre>
<p>But, say I have 3 ads:</p>
<ul>
<li>1 ad -- 5000 impressions</li>
<li>1 ad -- 5000 impressions</li>
<li>Google Adsense filling the reaminder of the sites hits</li>
</ul>
<p>Statistically speaking all 3 ads would be displayed an equal number of times. By the end of the first week and 15000 hits on the site, the first 2 ads would have used all of their impressions and the remaining 3+ weeks of the month and not be displayed again; only Google Adsense would be displayed.</p>
<p>How do I space out the ads so they are spread out over the month?</p>
<p>I am using LAMP.</p>
http://stackoverflow.com/questions/794588/generating-a-set-of-random-events-at-a-predefined-frequency1Generating a set of random events at a predefined frequencytjamaes2009-04-27T18:06:50Z2009-04-27T18:19:07Z
<p>I have a set of events that must occur <strong>randomly</strong>, but in a predefined frequency. i.e over a course of (totally) infinite events, event A should have occured 10% of the times, event B should have occured 3%, and so on... Of course the total sum of the percentages of the event list will add upto 100. </p>
<p>I want to achieve this programmatically. How do I do this? </p>
http://stackoverflow.com/questions/779797/how-do-i-read-n-random-lines-out-of-a-file-without-storing-the-file-in-memory4How do I read N random lines out of a file without storing the file in memory?Schwern2009-04-23T00:16:46Z2009-04-24T09:16:02Z
<p>I'm familiar with <a href="http://perldoc.perl.org/perlfaq5.html#How-do-I-select-a-random-line-from-a-file%3f" rel="nofollow">the algorithm for reading a single random line from a file without reading the whole file into memory</a>. I wonder if this technique can be extended to N random lines?</p>
<p>The use case is for a password generator which concatenates N random words pulled out of a dictionary file, one word per line (like <code>/usr/share/dict/words</code>). You might come up with <code>angela.ham.lewis.pathos</code>. Right now it reads the whole dictionary file into an array and picks N random elements from that array. I would like to eliminate the array, or any other in-memory storage of the file, and only read the file once.</p>
<p>(No, this isn't a practical optimization exercise. I'm interested in the algorithm.)</p>
<p><strong>Update</strong>:
Thank you all for your answers.</p>
<p>Answers fell into three categories: modifications of the full read algorithm, random seek, or index the lines and seek to them randomly.</p>
<p>The random seek is much faster, and constant with respect to file size, but distributes based on file size not on number of words. It also allows duplicates (that can be avoided but it makes the algorithm O(inf)). Here's my reimplementation of my password generator using that algorithm. I realize that by reading forward from the seek point, rather than backwards, it has an off-by-one error should the seek fall in the last line. Correcting is left as an exercise for the editor.</p>
<pre><code>#!/usr/bin/perl -lw
my $Words = "/usr/share/dict/words";
my $Max_Length = 8;
my $Num_Words = 4;
my $size = -s $Words;
my @words;
open my $fh, "<", $Words or die $!;
for(1..$Num_Words) {
seek $fh, int rand $size, 0 or die $!;
<$fh>;
my $word = <$fh>;
chomp $word;
redo if length $word > $Max_Length;
push @words, $word;
}
print join ".", @words;
</code></pre>
<p>And then there's Guffa's answer, which was what I was looking for; an extension of the original algorithm. Slower, it has to read the whole file, but distributes by word, allows filtering without changing the efficiency of the algorithm and (I think) has no duplicates.</p>
<pre><code>#!/usr/bin/perl -lw
my $Words = "/usr/share/dict/words";
my $Max_Length = 8;
my $Num_Words = 4;
my @words;
open my $fh, "<", $Words or die $!;
my $count = 0;
while(my $line = <$fh>) {
chomp $line;
$count++;
if( $count <= $Num_Words ) {
$words[$count-1] = $line;
}
elsif( rand($count) <= $Num_Words ) {
$words[rand($Num_Words)] = $line;
}
}
print join ".", @words;
</code></pre>
<p>Finally, the index and seek algorithm has the advantage of distributing by word rather than file size. The disadvantage is it reads the whole file and memory usage scales linearly with the number of words in the file. Might as well use Guffa's algorithm.</p>
http://stackoverflow.com/questions/716558/place-random-non-overlapping-rectangles-on-a-panel2Place random non-overlapping rectangles on a panelScott Evernden2009-04-04T05:24:40Z2009-04-04T15:21:26Z
<p>I've a panel of size X by Y. I want to place up to N rectangles, sized randomly, upon this panel, but I don't want any of them to overlap. I need to know the X, Y positions for these rectangles.</p>
<p>Algorithm, anyone?</p>
<p><strong>Edit</strong>: All the N rectangles are known at the outset and can be selected in any order. Does that change the procedure?</p>
http://stackoverflow.com/questions/517647/pseudorandom-directory-tree-generation5Pseudorandom directory tree generation?Jason S2009-02-05T19:58:51Z2009-03-24T12:21:39Z
<p>I'm trying to write a program which will pseudorandomly autogenerate (based on a seed value so I can re-run the same test more than once) a growing directory structure consisting of files. (this is to stress test a source control database installation)</p>
<p>I was wondering if any of you were aware of something similar to the quasirandom "space-filling" sequences (e.g. <a href="http://mathworld.wolfram.com/vanderCorputSequence.html" rel="nofollow">van der Corput sequences</a> or <a href="http://orion.math.iastate.edu/reu/2001/voronoi/halton%5Fsequence.html" rel="nofollow">Halton sequences</a>) that might work here.</p>
<p>edit: Or a fractal algorithm. This sounds suspiciously like a fractal algorithm.</p>
<p><hr /></p>
<p>edit 2: Never mind, I think I figured out the obvious solution, start with an empty tree, and just use sequential outputs of a pseudorandom generator to deterministically (based on the generated number and the state of the tree generated so far) do one of N actions, e.g. make a new subdirectory, add a new file, rename a file, delete a file, etc.</p>
<p>I want to do it this way rather than just sequentially dump files into a folder structure, because we're running into a situation where we are having some problems with large #s of files, and are not sure exactly what the cause is. (tree depth, # of renames, # of deletes, etc.)</p>
<p>It's not just 1 fixed tree I need to generate, the use strategy is: grow the tree structure a little bit, evaluate some performance statistics, grow the tree structure a little more, evaluate some performance statistics, etc.</p>
http://stackoverflow.com/questions/603727/which-algorithm-for-extremely-high-non-burst-errors2Which algorithm for extremely high non burst errors?Pyrolistical2009-03-02T19:55:49Z2009-03-04T20:21:21Z
<p>I have a binary stream that has a very high error rate. The error rate is 50% meaning each bit has a 50% chance of being flipped. The error does not occur in bursts and is completely random, so Reed–Solomon codes wouldn't work well.</p>
<p>Which scheme or algorithm should I apply to the stream? I don't care about the overhead at all.</p>
<p>This is all theoretical, so there's no point in asking if I could just reduce the error of the stream.</p>
<p><strong>EDIT</strong></p>
<p>Don't say its not possible, the very first answer it tells you it is possible with <a href="http://en.wikipedia.org/wiki/Noisy%5Fchannel%5Fcoding%5Ftheorem" rel="nofollow">noisy channel coding theorem.</a></p>
http://stackoverflow.com/questions/108819/best-way-to-randomize-a-string-array-in-c11Best way to randomize a string array in C#Matthias2008-09-20T17:33:26Z2009-02-18T19:11:57Z
<p>I was just wondering what is the best way to randomize an array of strings in C#. My array contains about 500 strings and I'd like to create a new Array with the same strings but in a random order.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/515665/generate-sequence-of-integers-in-random-order-without-constructing-the-whole-list1Generate sequence of integers in random order without constructing the whole list upfront [closed]pauldoo2009-02-05T12:16:58Z2009-02-06T05:33:56Z
<p>How can I generate the list of integers from 1 to N but in a random order, without ever constructing the whole list in memory?</p>
<p>(To be clear: Each number in the generated list must only appear once, so it must be the equivalent to creating the whole list in memory first, then shuffling.)</p>
<p>This has been determined to be a duplicate of <a href="http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling">this question</a>.</p>
http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling5Generating shuffled range using a PRNG rather than shufflingBarry Kelly2009-01-21T08:49:04Z2009-02-05T12:42:19Z
<p>Is there any known algorithm that can generate a shuffled range [0..n) in linear time and constant space (when output produced iteratively), given an arbitrary seed value?</p>
<p>Assume n may be large, e.g. in the many millions, so a requirement to potentially produce every possible permutation is not required, not least because it's infeasible (the seed value space would need to be huge). This is also the reason for a requirement of constant space. (So, I'm specifically not looking for an array-shuffling algorithm, as that requires that the range is stored in an array of length n, and so would use linear space.)</p>
<p>I'm aware of <a href="http://stackoverflow.com/questions/162606/iterating-shuffled-0-n-without-arrays">question 162606</a>, but it doesn't present an answer to this particular question - the mappings from permutation indexes to permutations given in that question would require a huge seed value space.</p>
<p>Ideally, it would act like a <a href="http://en.wikipedia.org/wiki/Linear_congruential_generator" rel="nofollow">LCG</a> with a period and range of <code>n</code>, but the art of selecting <code>a</code> and <code>c</code> for an LCG is subtle. Simply satisfying the constraints for <code>a</code> and <code>c</code> in a full period LCG may satisfy my requirements, but I am wondering if there are any better ideas out there.</p>
http://stackoverflow.com/questions/196017/unique-random-numbers-in-o117Unique random numbers in O(1)?dicroce2008-10-12T20:34:22Z2009-01-22T16:38:10Z
<p>The problem is this: I'd like to generate unique random numbers between 0 and 1000 that never repeat (I.E. 6 doesn't come out twice), but that doesn't resort to something like an O(N) search of previous values to do it. Is this possible?</p>