2022年4月2日
摘要:
#include <iostream> using namespace std; const int MAX_SIZE = 100; template<class DataType> class BothStack { private: DataType *data; int top1,top2;
阅读全文
posted @ 2022-04-02 21:14
历史锅巴
阅读(43)
推荐(0)
摘要:
using namespace std; const int MAX_SIZE = 100; template<class DataType> class Stack { private: DataType *data; int size; int top; public: Stack(); Sta
阅读全文
posted @ 2022-04-02 20:47
历史锅巴
阅读(38)
推荐(0)
2021年12月30日
摘要:
##java开发注意事项和细节 一个源文件只能有一个public类。其他类的个数不限,也可以将main方法写到非public类中,然后指定运行非public类,这样程序的入口就是非public类。 编译后,每一个类都对应一个.class文件 ##转义字符 \r回车,光标移至行首 System.out
阅读全文
posted @ 2021-12-30 22:25
历史锅巴
阅读(40)
推荐(0)
2021年12月29日
摘要:
盘符切换 E: cd /d E: 查看当前文件夹下所有文件 dir 清理屏幕 cls 退出系统 exit 查看网络 ipconfig 打开应用 calc 打开计算器 mspaint 打开画板 notepad 打开notepadd++ 文件操作 md 目录名1 目录名2 rd 目录名1 目录名2 创建
阅读全文
posted @ 2021-12-29 20:00
历史锅巴
阅读(37)
推荐(0)
摘要:
选到行尾 Shift-Command-→ 选到行首 Shift-Command-← 光标移到行首 Command-← 光标移到行尾 Command-→ 切换输入法 Command+Space
阅读全文
posted @ 2021-12-29 09:49
历史锅巴
阅读(74)
推荐(0)
摘要:
标题 三级标题 字体 加粗 斜体 ##引用 走向人生巅峰 分割线 ##图片 超链接 docker基本使用教程 列表 docker介绍 docker下载 docker安装 docker images docker ps docker run 表格 名字 性别 生日 张三 男 20211228 代码 p
阅读全文
posted @ 2021-12-29 09:32
历史锅巴
阅读(28)
推荐(0)