?? stack.h
字號:
// Borland C++ - (C) Copyright 1991 by Borland International
// stack.h: A Stack class derived from the List class
#include "list.h"
class Stack : public List
{
int top;
public:
Stack() {top = 0;};
Stack(int n) : List(n) {top = 0;};
int push(int elem);
int pop(int& elem);
void print();
};
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -