上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 94 下一页
摘要: #pragma once #pragma comment(lib,"rpcrt4.lib") #include <Windows.h> #include <rpcdce.h> #include <float.h> #include <iostream> #include <limits> #incl 阅读全文
posted @ 2022-10-13 19:37 FredGrit 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #pragma once #pragma comment(lib,"rpcrt4.lib") #include <Windows.h> #include <rpcdce.h> #include <iostream> #include <string> #include <vector> using 阅读全文
posted @ 2022-10-13 11:34 FredGrit 阅读(17) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include <iostream> #include <random> using namespace std; static random_device rd; static mt19937_64 mt(rd()); template<typename T> T ge 阅读全文
posted @ 2022-10-13 11:05 FredGrit 阅读(17) 评论(0) 推荐(0) 编辑
摘要: // ConsoleApplication3.cpp : This file contains the 'main' function. Program execution begins and ends there. // #pragma comment(lib, "rpcrt4.lib") #i 阅读全文
posted @ 2022-10-07 21:59 FredGrit 阅读(73) 评论(0) 推荐(0) 编辑
摘要: // ConsoleApplication1.cpp : This file contains the 'main' function. Program execution begins and ends there. // #pragma once #pragma comment(lib,"rpc 阅读全文
posted @ 2022-10-07 20:29 FredGrit 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 1.The project structure as below The Model folder and main cpp file. 2.Compile the files in Model folder via g++ -c as below and generate *.o object f 阅读全文
posted @ 2022-10-04 20:26 FredGrit 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #pragma once #pragma comment(lib,"rpcrt4.lib") #include <algorithm> #include <cstring> #include <iostream> #include <random> #include <vector> #includ 阅读全文
posted @ 2022-09-20 09:05 FredGrit 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Reference the official document .https://learn.microsoft.com/en-us/visualstudio/install/create-an-offline-installation-of-visual-studio?view=vs-2022 1 阅读全文
posted @ 2022-09-19 17:55 FredGrit 阅读(27) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; template<typename T1,typename T2> auto f(T1 v1[], T2 v2[], const size_t count)->decltype(v1[0]*v2[0]) { declt 阅读全文
posted @ 2022-09-08 00:30 FredGrit 阅读(24) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; double squared(double); double cubed(double); double sumArray(const double arr[], size_t len, double (*pFunc) 阅读全文
posted @ 2022-09-07 23:32 FredGrit 阅读(14) 评论(0) 推荐(0) 编辑
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 94 下一页