?? randlcg.h
字號:
/* randlcg.h prototypes for the minimal standard random number generator, Linear Congruential Method, the "minimal standard generator" Park & Miller, 1988, Comm of the ACM, 31(10), pp. 1192-1201 rcsid: @(#)randlcg.h 1.1 15:48:09 11/21/94 EFC*/#ifndef _RANDLCG_H_#define _RANDLCG_H_ 1.1#ifdef __cplusplusextern "C" {#endif#ifdef NO_PROTOlong set_seed();long get_seed();unsigned long int randlcg();#elselong set_seed(long);long get_seed(long);unsigned long int randlcg();#endif#ifdef __cplusplus}#endif#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -