码迷,mamicode.com
首页 > 其他好文 > 详细

Algs4-1.4.45优惠券收集问题

时间:2018-10-26 10:42:52      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:span   stdout   oid   str   结果   ati   static   随机数   src   

1.4.45优惠券收集问题。用和上一题相同的方式生成随机整数。通过实验验证生成所有可能的整数值所需生成的随机数总量为~N HN 。
答:HN表示递推关系。通过以下实验结果观察得出Hn接近于一个等差数列。
技术分享图片
public class E1d4d45
{
  public static void main(String[] args)
  {
    for (int i=2;i<=100000000;i=i+i)
    {
    int[] data=new int[i];
    int count=0;
    int notRepeartCount=0;
    while (notRepeartCount<i)
    {
      int r=StdRandom.uniform(i);
      count++;
      if(data[r]==0)
      {
         notRepeartCount++;
          data[r]=1;
      }
    }//end while
    StdOut.printf("N=%9d count=%9d count/N=%3d\n",i,count,count/i);
    }//end for
  }//end main
}//end class

Algs4-1.4.45优惠券收集问题

标签:span   stdout   oid   str   结果   ati   static   随机数   src   

原文地址:https://www.cnblogs.com/longjin2018/p/9854603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!