?? system.cc
字號(hào):
// System dependent routines// File: system.cpp / system.cc#include "system.hpp"double seconds(){#ifdef BSD // BSD system instead of SYSV rusage time; getrusage(RUSAGE_SELF,&time); return (double)(1.0*time.ru_utime.tv_sec+0.000001*time.ru_utime.tv_usec);#else return double(clock())/CLOCKS_PER_SEC;#endif}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -