active questions tagged random-number-generator+language-agnostic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T17:57:48Z http://stackoverflow.com/feeds/tag/random-number-generator+language-agnostic http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1710040/why-isnt-randomized-probing-more-popular-in-hash-table-implementations 4 Why isn't randomized probing more popular in hash table implementations? dsimcha 2009-11-10T18:14:49Z 2009-11-19T22:16:33Z <p>According to various sources, such as Wikipedia and various .edu websites found by Google, the most common ways for a hash table to resolve collisions are linear or quadratic probing and chaining. Randomized probing is briefly mentioned but not given much attention. I've implemented a hash table that uses randomized probing to resolve collisions. Assuming there is a collision, resolution works as follows:</p> <ol> <li>The full (32-bit) hash of an object is used to seed a linear congruential random number generator.</li> <li>The generator generates 32-bit numbers and the modulus is taken to determine where in the hash table to probe next.</li> </ol> <p>This has the very nice property that, regardless of how many hash collisions there are in modulus space, lookup and insertion times are expected to be O(1) as long as there are few collisions in full 32-bit hash space. Because the probe sequence is pseudo-random, no clustering behavior results from modulus space collisions, unlike with linear probing. Because the entire system is open-addressed and doesn't use linked lists anywhere, you don't need to perform a memory allocation on each insertion, unlike chaining.</p> <p>Furthermore, because the size of the hash is usually the size of the address space (32 bits on 32-bit machines), it is simply impossible to fit enough items in address space to cause large numbers of hash collisions in full 32-bit hash space under a good hashing scheme.</p> <p>Why, then, is randomized probing such an unpopular collision resolution strategy?</p> http://stackoverflow.com/questions/1428110/non-repeating-pseudo-random-number-stream-with-clumping 1 Non-repeating pseudo random number stream with 'clumping' OldCodeOrder 2009-09-15T16:05:15Z 2009-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/1041585/fast-generation-of-random-numbers-that-appear-random 1 Fast generation of random numbers that appear random... James Richards 2009-06-25T00:11:39Z 2009-06-27T12:15:28Z <p>I am looking for an efficient way to generate numbers that a human would perceive as being random. Basically, I think of this as avoiding long sequences of 0 or 1 bits. I expect humans to be viewing the bit pattern, and a very low powered cpu should be able to calculate near a thousand of these per second.</p> <p>There are two different concepts that I can think of to do this, but I am lost finding a efficient way of accomplishing them. </p> <ol> <li><p>Generate a random number with a fixed number of one bits. For a 32-bit random number, this requires up to 31 random numbers, using the Knuth selection algorithm. is there a more efficient way to generate a random number with some number of bits set? Unfortunately, 0000FFFF doesn't look very random.</p></li> <li><p>Some form of "part-wise' density seems like it'd look better - but I can't come up with a clear way of doing so - I'd imagine going through each chunk, and calculate how far it is from the ideal density, and try to increase the bit density of the next chunk. This sounds complex.</p></li> </ol> <p>Hopefully there's another algorithm that I haven't thought about for this. Thanks in advance for your help. </p> <p>[EDIT] I should be clearer with what I ask -<br /> (a) Is there an efficient way to generate random numbers without "long" runs of a single bit, where "long" is a tunable parameter?<br /> (b) Other suggestions on what would make a number appear to be less-random? </p> http://stackoverflow.com/questions/734482/what-is-the-proper-method-of-constraining-a-pseduo-random-number-to-a-smaller-ran 7 What is the proper method of constraining a pseduo-random number to a smaller range? Chas. Owens 2009-04-09T14:28:50Z 2009-04-11T15:14:48Z <p>What is the best way to constrain the values of a PRNG to a smaller range? If you use modulus and the old max number is not evenly divisible by the new max number you bias toward the <code>0</code> through <code>(old_max - new_max - 1)</code>. I assume the best way would be something like this (this is floating point, not integer math)</p> <pre><code>random_num = PRNG() / max_orginal_range * max_smaller_range </code></pre> <p>but something in my gut makes me question that method (maybe floating point implementation and representation differences?). </p> <p>The random number generator will produce consistent results across hardware and software platforms, and the constraint needs to as well. </p> <p>I was right to doubt the pseudocode above (but not for the reasons I was thinking). MichaelGG's <a href="http://stackoverflow.com/questions/734482/what-is-the-proper-method-of-constraining-a-pseduo-random-number-to-a-smaller-ran/739945#739945">answer</a> got me thinking about the problem in a different way. I can model it using smaller numbers and test every outcome. So, let's assume we have a PRNG that produces a random number between 0 and 31 and you want the smaller range to be 0 to 9. If you use modulus you bias toward 0, 1, 2, and 3. If you use the pseudocode above you bias toward 0, 2, 5, and 7. I don't think there can be a good way to map one set into the other. The best that I have come up with so far is to regenerate the random numbers that are greater than <code>old_max/new_max</code>, but that has deep problems as well (reducing the period, time to generate new numbers until one is in the right range, etc.). </p> <p>I think I may have naively approached this problem. It may be time to start some serious research into the literature (someone has to have tackled this before).</p> http://stackoverflow.com/questions/37702/true-random-number-generator 7 True random number generator goldenmean 2008-09-01T10:25:46Z 2009-03-07T00:17:10Z <p>Sorry for this not being a "real" question, but Sometime back i remember seeing a post here about randomizing a randomizer randomly to generate truly random numbers, not just pseudo random. I dont see it if i search for it.</p> <p>Does anybody know about that article?</p> http://stackoverflow.com/questions/446153/generating-uniform-random-deviates-within-a-given-range 0 Generating Uniform Random Deviates within a given range RobS 2009-01-15T09:32:56Z 2009-01-15T12:23:02Z <p>I'd like to generate uniformly distributed random integers over a given range. The interpreted language I'm using has a builtin fast random number generator that returns a floating point number in the range 0 (inclusive) to 1 (inclusive). Unfortunately this means that I can't use the <a href="http://stackoverflow.com/questions/363681/java-generating-random-number-in-a-range#363732">standard solution seen in another SO question</a> (when the RNG returns numbers between 0 (inclusive) to 1 (exclusive) ) for generating uniformly distributed random integers in a given range:</p> <pre><code>result=Int((highest - lowest + 1) * RNG() + lowest) </code></pre> <p>The only sane method I can see at the moment is in the rare case that the random number generator returns 1 to just ask for a new number. </p> <p>But if anyone knows a better method I'd be glad to hear it.</p> <p>Rob</p> <p>NB: Converting an existing random number generator to this language would result in something infeasibly slow so I'm afraid that's not a viable solution.</p> <p>Edit: To link to the actual SO answer.</p>