6 Star 11 Fork 1

distill/distill-infra

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
double-average.go 527 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lyndon Hu 提交于 2020-04-29 10:51 . infra init
package algo
import (
"math/rand"
"time"
)
//二倍均值算法
func DoubleAverage(count, amount int64) int64 {
if count <= 0 {
return 0
}
if count == 1 {
return amount
}
//计算出最大可用金额
max := amount - min*count
//计算最大可用平均值
avg := max / count
//二倍均值基础在加上最小金额,防止出现0值
avg2 := 2*avg + min
//随机红包金额序列元素,把二倍均值作为随机的最大数
rand.Seed(time.Now().UnixNano())
x := rand.Int63n(avg2) + min
return x
}
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

搜索帮助