博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c随机数&运行时间
阅读量:6318 次
发布时间:2019-06-22

本文共 542 字,大约阅读时间需要 1 分钟。

#include
#include
srand((unsigned) time(NULL)); //用时间做种,每次产生随机数不一样printf("100000 100000\n"); for(i=0;i<50000;i++){ int min=rand()%50000; int max=min+rand()%50000; max=max>100000?100000:max; printf("1 %d %d\n",min,max); } for(i=0;i<50000;i++){ printf("2 %d\n",rand()%100000+1); }

 计算时间

头文件time.hint start=clock();//从这开始计时 这放要测试时间的代码 int end=clock();//到这结束printf("%d ms\n",end-start);//算出来的单位是毫秒

 freopen("input2.txt","r",stdin);   

 freopen("output2.txt","w",stdout);   

转载地址:http://ikcaa.baihongyu.com/

你可能感兴趣的文章
华为畅玩5 (CUN-AL00) 刷入第三方twrp Recovery 及 root
查看>>
[转] ReactNative Animated动画详解
查看>>
DNS原理及其解析过程
查看>>
没想到cnblog也有月经贴,其实C#值不值钱不重要。
查看>>
[转] Entity Framework Query Samples for PostgreSQL
查看>>
软件需求分析的重要性
查看>>
UVA465:Overflow
查看>>
HTML5-placeholder属性
查看>>
poj 2187:Beauty Contest(旋转卡壳)
查看>>
Python-库安装
查看>>
Git笔记
查看>>
普通人如何从平庸到优秀,在到卓越
查看>>
SLAM数据集
查看>>
c#学习笔记05——数组&集合
查看>>
【图论算法】Dijstra&BFS
查看>>
注册和上传文件(头像)
查看>>
使用OVS
查看>>
键盘回收的几种方法
查看>>
Python(条件判断和循环)
查看>>
day4 linux安装python
查看>>