上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 94 下一页
摘要: //Util.h #ifndef _Util_H_ #define _Util_H_ #include <iostream> #include <random> using namespace std; template <class T> class Util { public: random_d 阅读全文
posted @ 2022-11-27 20:23 FredGrit 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #include <dirent.h> #include <stdio.h> #include <string.h> void listFilesRecursively(char *basePath) { char path[1000]; struct dirent *dp; DIR *dir = 阅读全文
posted @ 2022-11-26 20:04 FredGrit 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-11-20 19:55 FredGrit 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1.Install sudo apt-get install rapidjson-dev 2.Code #include <algorithm> #include <chrono> #include <ctime> #include <fstream> #include <iostream> #in 阅读全文
posted @ 2022-11-13 19:03 FredGrit 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 1.Install sudo apt-get install libjsoncpp-dev 2.Add using header. #include <jsoncpp/json/json.h> 3.Use #include <algorithm> #include <chrono> #include 阅读全文
posted @ 2022-11-13 17:59 FredGrit 阅读(161) 评论(0) 推荐(0) 编辑
摘要: #include <chrono> #include <ctime> #include <fstream> #include <iostream> #include <random> #include <sstream> #include <thread> #include <unistd.h> # 阅读全文
posted @ 2022-11-06 18:41 FredGrit 阅读(49) 评论(0) 推荐(0) 编辑
摘要: #pragma once #pragma comment(lib,"rpcrt4.lib") #include <Windows.h> #include <rpcdce.h> #include <iostream> #include <thread> #include <unordered_map> 阅读全文
posted @ 2022-10-17 11:18 FredGrit 阅读(24) 评论(0) 推荐(0) 编辑
摘要: #pragma comment(lib,"rpcrt4.lib") #include <Windows.h> #include <rpcdce.h> #include <iostream> #include <string> #include <thread> #include <vector> u 阅读全文
posted @ 2022-10-14 12:30 FredGrit 阅读(29) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include <iostream> #include <random> #include <algorithm> using namespace std; random_device rd; mt19937_64 mt(rd()); template<typename 阅读全文
posted @ 2022-10-14 11:01 FredGrit 阅读(15) 评论(0) 推荐(0) 编辑
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 94 下一页