Http://hi.baidu.com/jkxtu1984/blog/item/d5d1f1c6e5ac461d9d163dec.html
The standard library (included in ) provides two functions to help generate pseudo-random numbers:
Function 1: int rand (void );Returns a random integer between [seed, rand_max (0
Rand ()Returns a random value ranging from 0 to RAND_MAX. Before calling this function to generate a random number, you must use srand () to set the random number seed. If no random number seed is set, rand () will automatically set the random
Rand and srand usageFirst, we need to have a general opinion on rand & srand: srand initializes random seeds, and rand generates random numbers. The following describes in detail.Rand (Random Number Generation)Header file: # includeDefine function:
If there is no srand () function and only RAND () function, the random numbers generated by each running program are the same. With the srand () function, the numbers generated each time are different.
In C ++, you can use the rand () function to
Srand () is to provide seed for rand ().
If srand inputs the same value each time, the random number generated each time is the same,
Srand (N)
For (10)
Rand ()That is to say, using a fixed value as the seed is a disadvantage. The common practice is
use of the Random function rand () and Srand () in C + +First, Rand ()Name of function: RandFunction: Random number generatorUsage: int rand (void);Header file: stdlib.hFunction Description:The internal implementation of RAND () is made with linear
Http://www.cnblogs.com/lenient/articles/1565376.html
First we have a general view of Rand&srand: Srand initializes random seeds, Rand produces random numbers, which are described in detail below.
RAND (generating random numbers)
Table header file:
The standard library (included in ) provides two functions to help generate pseudo-random numbers:
Function 1: int rand (void );Returns a random integer between [seed, RAND_MAX (0x7fff) starting from the seed specified in srand (seed.
Function 2:
I. Basics
We know that the rand () function can be used to generate random numbers, but this is not a real random number, it is a pseudo random number, it is based on a number, we can call it a kind, A coefficient calculated based on a recursive
The random number of a computer is generated by a pseudo-random number, which is a sequence of small m-polynomial, in which each small sequence has an initial value, that is, a random seed. (Note: The period of the small m polynomial sequence is 6553
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.