📄 head.h
字号:
#ifndef Stack_H
#define Stack_H
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
class stack
{
public:
stack(int, string);
bool push(string );
bool pop(string );
void print();
string stack_top();
int stack_size();
~stack();
string *ary;
private:
int pointer;
int size;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -