1. 程式人生 > >需要註意的各種各種 持續更新?

需要註意的各種各種 持續更新?

unsigned err 隨機化 exe sign reat eve col cor

隨便寫寫~如果對你有幫助那是更好。

①對拍啊對拍啊,再寫不對我就繼續寫…… 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>

需要註意的各種各種 持續更新?