2021年10月9日

摘要: 1. delete 和 new 2. 函数重载 3. 内联函数 4. 常量 5. 引用 常量引用 int x = 1; const int& y = x; x = 2; cout << y << endl; /*output 2 */ 函数引用 int& func2(int* pint) { ret 阅读全文
posted @ 2021-10-09 23:04 祁东 阅读(30) 评论(0) 推荐(0) 编辑
 
摘要: 汉诺塔 - 递归 #include <iostream> #include <cstring> #include <string> #include <iomanip> #include <windows.h> #include <ctime> using namespace std; int co 阅读全文
posted @ 2021-10-09 23:04 祁东 阅读(17) 评论(0) 推荐(0) 编辑