stack2.h

来自「hello everybody. good lucky to you」· C头文件 代码 · 共 18 行

H
18
字号
// Borland C++ - (C) Copyright 1991 by Borland International

// stack2.h:   A Stack class derived from the List class
// from Getting Started
#include "list2.h"

class Stack : public List                  // line 5
{
   int top;

public:
   Stack() {top = 0;};
   Stack(int n) : List(n) {top = 0;};      // line 11
   int push(int elem);
   int pop(int& elem);
   void print();
};

⌨️ 快捷键说明

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