03 2022 档案
摘要:~1 库 写xx.h库时 #ifndef _xx_h #define _xx_h #endif _xx_h //确定xx.h库一共只被调用一次,引用库相当于把库中的代码复制过来 ~2 友元 class node{ private: int G1,G2; friend void work();//申明
阅读全文
摘要:https://www.cnblogs.com/skywang12345/p/3245399.html #include<bits/stdc++.h> using namespace std; enum Col{red,black}; struct node{ node *fa,*lson,*rso
阅读全文
摘要:上图clone和pull应该是反了,checkout应该是index到workspace 首先,在本地打开一个文件夹,并用命令行打开。 1.git clone git@github.com:zhongero/2333.git 把该远程仓库clone到当前文件夹中 网址可选ssh/html(但一般ht
阅读全文