📄 system.cc
字号:
// 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}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -