home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tcpp
/
examples
/
stack.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-06-09
|
319b
|
18 lines
// stack.h: Die Klasse Stack von der Klasse
// List abgeleitet
// aus Kapitel 6 der Einführung
#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();
};