📄 cheku.h
字号:
// cheku.h: interface for the cheku class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CHEKU_H__963B95C7_5164_498C_AF05_8FDA658D41B8__INCLUDED_)
#define AFX_CHEKU_H__963B95C7_5164_498C_AF05_8FDA658D41B8__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class cheku
{
public:
cheku(int size);
void ruku(int x);
int chuku();
int Find(int a);
bool Full();
int *S; //存放栈元素的数组起始地址
int top; //栈顶指针,指示栈顶元素在数组中的下标
private:
int MaxSize; //栈最大可容纳元素个数
};
#endif // !defined(AFX_CHEKU_H__963B95C7_5164_498C_AF05_8FDA658D41B8__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -