实验二 链栈

#include<iostream.h> struct Node { int data; struct Node *next; }; class Linkstack { private: Node *top; public: Linkstack(); ~Linkstack(){} void push(int x); int get(); int pop(); }; Linkstack::Links
相关文章
相关标签/搜索