-
Notifications
You must be signed in to change notification settings - Fork 18
工具函数
luosw edited this page Aug 6, 2020
·
2 revisions
为了数据生成的需要,CarYon 提供了一些简单的工具函数。
- choice 函数:
参数为一个数组,一个起始下标,一个终止下标。
最终会返回这个数组两个下标之间随机一个值。
例如:
choice(a,1,10);
- doubleRandom 函数:
返回一个 0 到 1 之间的浮点数。
例如:
doubleRandom();
下面的函数需要 C++11 支持:
choice_plus 函数。
直接从给定的数组中返回一个值。
choice_plus({2,4,6,3,5,2,1});
CarYon is made by luosw, licensed under ISC Lincense.