文件名称:random:随机提供现代C ++和便捷的API
文件大小:102KB
文件格式:ZIP
更新时间:2024-06-02 08:43:05
random cpp11 header-only C++
随机提供现代C ++和便捷的API 随机值的容器 随机播放 定制配送 定制播种机 线程局部随机 局部随机 引擎 取得引擎 播种 最小值 最大值 不带参数的“获取” 丢弃 是平等的 连载 反序列化 设计目标 有几种方法可以在C ++中使用随机数: C风格 srand ( time( NULL ) ); // seed with time since epoch auto random_number = (rand() % ( 9 - 1 )) + 1 ; // get a pseudo-random integer between 1 and 9 问题 应该指定种子 应该写自己的发行版algorihtm 无法保证所产生的随机序列的质量。 C ++ 11风格 std::random_device random_device; // create object for s
【文件预览】:
random-master
----.travis.yml(12KB)
----cmake()
--------config.cmake.in(183B)
----LICENSE.MIT(1KB)
----test()
--------current_random.hpp(399B)
--------set_up_warnings.cmake(3KB)
--------random_test.cpp(28KB)
--------CMakeLists.txt(1KB)
--------catch.hpp(408KB)
----include()
--------effolkronium()
----appveyor.yml(1KB)
----.gitignore(6KB)
----CMakeLists.txt(3KB)
----README.md(14KB)