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

需要注意的各种各种 持续更新?

时间:2017-11-04 22:27:12      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:.exe   str   table   border   exe   idt   ctime   font   stl   

随便写写~如果对你有帮助那是更好。

①对拍啊对拍啊,再写不对我就继续写…… QAQ


bat:
:again
r.exe > input
a.exe < input > out.a
b.exe < input > out.b
fc out.a out.b  >nul
if not errorlevel 1 goto again

 

注意那个什么 out.a out.b,还有是if not  !! 和 1 !!

 

②stl堆的定义


 

priority_queue <int> q;

根堆:

priority_queue <int,vector<int>,greater<int> > q;

 

③随机化函数


srand((unsigned)time(NULL));

n = rand();

srand 和 rand 属于 #include<algorithm>

time 属于 #include<ctime>

 

需要注意的各种各种 持续更新?

标签:.exe   str   table   border   exe   idt   ctime   font   stl   

原文地址:http://www.cnblogs.com/Loizbq/p/7784601.html

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