main.cpp

来自「包括栈的pushpop,计数」· C++ 代码 · 共 26 行

CPP
26
字号
#include <iostream.h>
#include <stdlib.h>
#include <string.h>
#include "stack.h"
//typedef char ElementType;

void main()
{
/*	InitStack (Stack *S, int MaxSize);

	DestroyStack (Stack *S);

	ClearStack(Stack *S);

	Empty(Stack S);

	StackLength(Stack S);

	GetTop(Stack S,ElementType &e);

	Push(Stack *S,ElementType e);

	Pop(Stack *S,ElementType &e);
*/
	Invert();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?