疯狂鼠标

文章
4
资源
0
加入时间
2年10月17天

两道概率算法题

题目1. 给定一个包含n行数据的文件(n未知),要求设计一个算法,只遍历文件一遍就能等概率地输出某一行。即,每行被输出的概率是相等的(1/n,n未知)。假设文件可能会很大,内存有限,不能保存所有的文件数据。题目2. n个数据排除一行,即数据Ci在位置Li, 1<=i<=n,设计一个算法把数据打乱,使得每个数据在等概率地出现在每个位置,即 p(Ci, Lj)=1/n, 其中 1&lt...

704. Binary Search*704. Binary Search*

704. Binary Search*https://leetcode.com/problems/binary-search/题目描述Given a sorted (in ascending order) integer array nums of n elements and a target value, write a function to search target in nums...

torch随机数 manual_seed  

torch.manual_seed(args.seed) #为CPU设置种子用于生成随机数,以使得结果是确定的代码torch.manual_seed(1) # reproducibleprint(torch.rand(2))print(torch.rand(2))输出:tensor([0.7576, 0.2793])tensor([0.4031, 0.7347])代码:torch.manual_seed(1) # reproducibleprint...