网站首页
编程语言
数据库
系统相关
其他分享
编程问答
weightRanges
2024-11-15
抽奖-随机加权算法
packagelotteryimport( "fmt" "math/rand" "sort" "time")typeLotterystruct{}funcNewLottery()*Lottery{ return&Lottery{}}typePrizestruct{ Namestring Stockint Weightint//权重}//