6 Star 11 Fork 1

distill/distill-infra

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
double-random.go 448 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lyndon Hu 提交于 2020-04-29 10:51 . infra init
package algo
import (
"math/rand"
"time"
)
//二次随机算法
func DoubleRandom(count, amount int64) int64 {
if count == 1 {
return amount
}
//计算最大可调度金额
max := amount - min*count
rand.Seed(time.Now().UnixNano())
//一次随机,计算出一个种子金额作为基数
seed := rand.Int63n(count*2) + 1
n := max/seed + min
//二次随机,计算出红包金额序列元素
x := rand.Int63n(n)
return x + min
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/banyanhouse/distill-infra.git
git@gitee.com:banyanhouse/distill-infra.git
banyanhouse
distill-infra
distill-infra
v0.0.11-grpc-test

搜索帮助