01 2022 档案
摘要:<Window x:Class="WpfApp2.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/200
阅读全文
摘要:#include <iostream> #include <cstdlib> #include <ctime> using namespace std; void game6(); int main() { game6(); return 0; } void game6() { srand(time
阅读全文
摘要:#include <iostream> using namespace std; class BSTNode { public: BSTNode *root; BSTNode *Left; BSTNode *Right; BSTNode *Parent; int Key; BSTNode(); BS
阅读全文
摘要:#include <iostream> #include <uuid/uuid.h> #include <ctime> #include <string.h> #include "BSTNode.h" #include <vector> using namespace std; void vecto
阅读全文
摘要:#include <iostream> #include <uuid/uuid.h> #include <ctime> #include <string.h> using namespace std; static char* dtValue=(char*)malloc(20); static ch
阅读全文
摘要://BSTNode.h #include <iostream> using namespace std; class BSTNode { public: int Key; BSTNode *Left; BSTNode *Right; BSTNode *Parent; BSTNode *root; B
阅读全文
摘要://TreeNode.h #include <iostream> using namespace std; class TreeNode { public: int val; TreeNode *left; TreeNode *right; TreeNode *NewTreeNode(int key
阅读全文
摘要:#include <iostream> #include <uuid/uuid.h> #include <ctime> #include <random> #include <unistd.h> #include <string.h> #include <exception> #include <t
阅读全文
摘要:#include <iostream> #include <uuid/uuid.h> #include <ctime> #include <unistd.h> #include <string.h> using namespace std; static char *uuidValue=(char*
阅读全文
摘要:g++ -g -std=c++11 -I. h1.cpp -o h1 -luuid #include <iostream> #include <unistd.h> #include <ctime> #include <uuid/uuid.h> #include <string> #include <
阅读全文