active questions tagged random+c++ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T16:57:03Z http://stackoverflow.com/feeds/tag/random+c++ http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1885903/how-to-call-a-c-function-from-random-places-inside-another-function 1 How to call a C function from random places inside another function ? shan23 2009-12-11T05:10:20Z 2009-12-11T13:19:05Z <p>Can anyone tell me how to insert a function call (say Yield() ) at random places inside a C function , so that each time the code is run , Yield() gets called from different parts of the code ?</p> <p>I am faced with such a requirement as I'm using 2 threads in a <em>cooperative threading environment</em> , where unless the running thread yields the processor explicitly , the other (waiting) thread cannot start running. I don't want to place the Yield() call at a single point , since that makes the thread sequence deterministic. Without rewiring the entire environment (from cooperative to pre-emptive) , this is the only solution I can think of in which Thread_1() makes the Yield() call at random places inside it, allowing Thread_2() to take over.</p> <p>Any insights into a different solution achieving the same end-goals is also welcome!</p> http://stackoverflow.com/questions/1783629/why-do-i-get-the-same-result-with-rand-every-time-i-compile-and-run 1 Why do I get the same result with rand() every time I compile and run? Sumit M Asok 2009-11-23T14:57:57Z 2009-11-23T15:43:44Z <p>Whenever I run this code, I get a same result.</p> <p>Program</p> <pre><code>#include&lt;stdlib.h&gt; int main(int agrc, const char *argv[]) { int i = rand(); printf("%d\n",i); for(i=0;i&lt;10;i++) { printf("%d\n",rand()); } } </code></pre> <p>Result:</p> <pre><code>41 18467 6334 26500 19169 15724 11478 29358 26962 24464 5705 </code></pre> <p>I ran this on <code>mingw</code>. Actually I am learning <code>Objective-C</code></p> <p>Please help me.</p> http://stackoverflow.com/questions/1108780/why-do-i-always-get-the-same-sequence-of-random-numbers-with-rand 1 why do i always get the same sequence of random numbers with rand() ? Yassir 2009-07-10T10:18:01Z 2009-11-14T20:00:49Z <p>this is the first time i m trying random numbers with c (i miss c#) here is my code </p> <pre><code>int i , j= 0; for(i=0;i&lt;=10;i++){ j = rand(); printf("j = %d\n",j); } </code></pre> <p>with this code i get the same sequance everytime the code but it generates random sequences if i add srand(/<em>somevalue/</em>) before the for loop . <strong>can someone explain why ?</strong></p> http://stackoverflow.com/questions/1699248/how-to-generate-random-file-name-under-linux 0 How to generate random file name under Linux? jcyang 2009-11-09T05:36:38Z 2009-11-09T06:03:11Z <p>I want to make a small program which use local namespace socket and I will need to use temporary file name as address of the socket.</p> <p>So how to generate random file name under Linux?</p> <p>&#43; I'm using the C programming language under Debian Linux.<br/> &#43; Acoording to the GNU C Library Reference,tmpname is not safe.But the safe ones tmpfile and mkstemp <strong>create</strong> and <strong>open</strong> the generated file.Is there any <strong>safe</strong> and <strong>non-create-open</strong> to this.In other words, the function should forbidden any other request to create the generated file name under specific directory.</p> <p>thanks.</p> http://stackoverflow.com/questions/1608181/unique-random-numbers-in-an-integer-array-in-the-c-programming-language 5 Unique random numbers in an integer array in the C programming language. Chris_45 2009-10-22T15:51:13Z 2009-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 &lt; 10; i++) { vektor[i] = rand() % 100 + 1; } //No uniqueness here </code></pre> http://stackoverflow.com/questions/1026327/what-common-algorithms-are-used-for-cs-rand 1 What common algorithms are used for C's rand()? Azrael 2009-06-22T09:47:11Z 2009-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/1440352/random-numbers-in-the-c-programming-language 2 Random numbers in the C programming language [closed] Chris_45 2009-09-17T17:52:43Z 2009-09-17T18:28:02Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/822323/how-to-generate-a-random-number-in-c">How to generate a random number in C?</a> </p> </blockquote> <p>How do you generate random numbers in C?</p> http://stackoverflow.com/questions/1202687/in-c-how-do-i-get-a-specific-range-of-numbers-from-rand 2 In C, how do I get a specific range of numbers from rand()? akway 2009-07-29T20:01:44Z 2009-08-04T20:39:56Z <pre><code>srand(time(null)); printf("%d", rand()); </code></pre> <p>Gives a high-range random number (0-32000ish), but I only need about 0-63 or 0-127, though I'm not sure how to go about it. Any help?</p> http://stackoverflow.com/questions/1190689/problem-with-rand-in-c 4 Problem with rand() in C [closed] akway 2009-07-27T21:20:52Z 2009-07-27T22:11:31Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/1108780/why-do-i-always-get-the-same-sequence-of-random-numbers-with-rand">why do i always get the same sequence of random numbers with rand() ?</a> </p> </blockquote> <p>This is my file so far:</p> <pre><code>#include &lt;stdio.h&gt; int main(void) { int y; y = generateRandomNumber(); printf("\nThe number is: %d\n", y); return 0; } int generateRandomNumber(void) { int x; x = rand(); return x; } </code></pre> <p>My problem is rand() ALWAYS returns 41. I am using gcc on win... not sure what to do here.</p> <p>EDIT: Using time to generate a random number won't work. It provides me a number (12000ish) and every time I call it is just a little higher (about +3 per second). This isn't the randomness I need. What do I do?</p> http://stackoverflow.com/questions/1063074/multiple-random-number-generator-states-in-c-unix 1 Multiple random number generator states in c/Unix Eyal 2009-06-30T11:00:50Z 2009-06-30T14:37:04Z <p>I'm using srandom() and random() to generate random numbers in c on a Unix system. I would like to have multiple RNGs. Each one, given the same seed, should output the same sequence. I would also like to save and restore the state of each one. Here's a pseudocode example:</p> <pre><code>R1 = new_rng(5); //5 is the seed R2 = new rng(5); //5 is the seed here, too. a = R1.random(); b = R1.random(); d = R2.random(); //a == d s1 = R2.get_state(); //save the state of R2 e = R2.random(); //b == e R2.set_state(s1); //restore the state of R2 f = R2.random(); //b == f </code></pre> <p>How do I do this? Sometimes the RNGs will fork into different threads and I need to replicate the state of the RNG when creating a new thread, too.</p> http://stackoverflow.com/questions/968753/collecting-numbers-and-printing-them 0 collecting numbers and printing them austin 2009-06-09T08:02:00Z 2009-06-09T08:33:30Z <p>so what I'm trying to accomplish is generating 100 random 0's and 1's add them all into one variable and then print it. What I have right now I don't know how to make work. If someone could explain what I'm doing wrong, I would be very grateful.</p> <pre><code>randstring (void){ int i; int num; char buffer[101]; i=100; while(i&gt;0, i--){ num = rand()%2; strcpy(buffer, num); } return(buffer); } </code></pre> <p>so what i have now is:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;string.h&gt; main (void){ printf("%f", randstring()); } randstring (void){ int num; char buffer[101]; int i = 100; while(i-- &gt;= 0) buffer[i] = rand() % 2; return(buffer); } </code></pre> http://stackoverflow.com/questions/938241/how-to-random-seed-from-memory-usage 0 How to random seed from memory usage? mhd 2009-06-02T06:59:05Z 2009-06-02T07:15:01Z <p>In windows, I want to generate random number with seed: time + memory usage. I want to get the memory usage from physical memory sytem cache the one that appears in taskmgr. <br> So, How to get physical memory system cache in c (windows and not .net )? The random seed may end up something like this:</p> <p><code> srand((unsigned int)(time(0)+ memSystemCache) ); </code></p> <p>This is probably get the memory usage from compile-time , it's ok for me. Is it possible? <br> Tnx in advance.</p> http://stackoverflow.com/questions/790083/does-qsort-demand-consistent-comparisons-or-can-i-use-it-for-shuffling 1 Does qsort demand consistent comparisons or can I use it for shuffling? ojblass 2009-04-26T01:32:53Z 2009-05-08T21:24:20Z <p><strong>Update</strong>: Please file this under bad ideas. You don't get anything for free in life and here is certainly proof. A simple idea gone bad. It is definitely something to learn from however.</p> <p>Lazy programming challenge. If I pass a function that 50-50 returns true or false for the qsort's comparision function I think that I can effectively unsort an array of structures writing 3 lines of code. </p> <pre><code>int main ( int argc, char **argv) { srand( time(NULL) ); /* 1 */ ... /* qsort(....) */ /* 2 */ } </code></pre> <p>...</p> <pre><code>int comp_nums(const int *num1, const int *num2) { float frand = (float) (rand()) / ((float) (RAND_MAX+1.0)); /* 3 */ if (frand &gt;= 0.5f) return GREATER_THAN; return LESS_THAN; } </code></pre> <p>Any pitfalls I need to look for? Is it possible in fewer lines through swapping or is this the cleanest I get for 3 non trivial lines? </p> http://stackoverflow.com/questions/771012/baffling-inline-behaviour-from-random-number-generator-wrapper-c 1 Baffling Inline Behaviour from Random Number Generator Wrapper (C++) alifeofzen 2009-04-21T04:15:28Z 2009-04-21T04:41:10Z <p>Hey Guys</p> <p>I have a simple wrapper for an Mersenne twister random number generator. The purpose is to scale the number returned by the generator (between 0 and 1) to between argument defined limits (begin and end).</p> <p>So my function is </p> <pre><code>inline float xlRandomFloat(float begin, float end) {return (begin+((end-begin)*genrand_real2()));} </code></pre> <p>I don't believe the implementation of genrand_real2() function is important, but if I am wrong it can be found <a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/CODES/mt19937ar.c" rel="nofollow">here</a></p> <p>The problem is the function does not return the translated result. The scaling (multiplying by (begin-end) seems to work correctly, but the addition of begin does not seem to be returned.</p> <p>So if I call xlRandomFloat(5,10) - I get values between 0 and 5.</p> <p>If I debug with GDB, and use the print function then it shows the correct result. So then I tried separating things into lines to see what happens</p> <pre><code>inline float xlRandomFloat(float begin, float end) { float ret; ret=(((end-begin)*genrand_real2())); ret+=begin; return ret;}; </code></pre> <p>When debugging, it jumped straight from the first line into the genrand_real2() function and skipped out every thing else entirely. That was really confusing so I thought it may have something to do with the inlining. I moved the file from this .hpp file to the .cpp and removed the inline keyword and everything works correctly.</p> <p>But why does this behavior occur, and how can I inline this function? Also, I am not sure if this is relevant, but often when I made changes to the sources, my Make compilation would say there is nothing to be done. Which is unusual since normally I expect make to pick up on changes in the sources and rebuild accordingly.</p> <p>Any ideas.</p> <p>Thanks</p> <p>Zenna</p> http://stackoverflow.com/questions/766005/simple-random-number-generator-c 0 Simple random number generator C loljdawson 2009-04-19T20:13:01Z 2009-04-19T20:48:48Z <p>Hi, Looking to make a really simple random number generator method in C. The numbers should be between 0 and 24 and can be for example 14.5f.</p> <p>Any help would be great, thanks!</p> http://stackoverflow.com/questions/402674/randomize-a-string-in-c 5 Randomize a string in C Max 2008-12-31T10:21:27Z 2009-01-02T16:49:00Z <p>I'm trying to generate random permutations of an 80-character fixed string in C. Much to my dismay, the system I'm working on lacks strfry(). What's the best way for me to generate a random permutation of this string? Since this will be looped over approx. 100,000 times, performance is an issue.</p> http://stackoverflow.com/questions/232237/whats-the-best-way-to-return-a-random-line-in-a-text-file-using-c 8 What's the best way to return a random line in a text file using C? jeremy Ruten 2008-10-24T01:56:00Z 2008-11-06T02:42:24Z <p>What's the best way to return a random line in a text file using C? It has to use the standard I/O library (<code>&lt;stdio.h&gt;</code>) because it's for Nintendo DS homebrew.</p> <p><strong>Clarifications:</strong></p> <ul> <li>Using a header in the file to store the number of lines won't work for what I want to do.</li> <li>I want it to be as random as possible (the best being if each line has an equal probability of being chosen as every other line.)</li> <li>The file will never change while the program is being run. (It's the DS, so no multi-tasking.)</li> </ul> http://stackoverflow.com/questions/143108/is-windows-rands-thread-safe 1 Is Windows' rand_s thread-safe? phjr 2008-09-27T06:13:39Z 2008-09-27T06:53:47Z <p>Just as in title. Is suspect it is, but I couldn't find it anywhere explicitly stated. And for this property I wouldn't like to rely on speculations.</p> http://stackoverflow.com/questions/133546/is-reading-dev-urandom-thread-safe 2 Is reading /dev/urandom thread-safe ? phjr 2008-09-25T14:07:25Z 2008-09-25T14:10:11Z <p>This is the code:</p> <p><code><pre> unsigned int number; FILE* urandom = fopen("/dev/urandom", "r"); if (urandom) { size_t bytes_read = fread(&amp;number, 1, sizeof(number), urandom); DCHECK(bytes_read == sizeof(number)); fclose(urandom); } else { NOTREACHED(); } </pre></code></p> <p>If not, how do I make it thread-safe?</p>