链栈类模板实现

链栈类模板实现

 这是头文件LinkStack.h

//LinkStack.h

#ifndef LINKSTACK_H_INCLUDED
#define LINKSTACK_H_INCLUDED #include<iostream> using namespace std; template<class T> struct Node { T data; Node<T> *next; }; template<class T> class LinkStack { public: LinkStack(); bool empty()const; void pop(); void push(const T &x); int size()const; const T&top()const; void print()const; private: Node<T>* _top; int _size; }; template<class T> LinkStack<T>::LinkStack():_size(0),_top(NULL) { } template <class T> bool LinkStack<T>::empty()const { return _top==NULL; } template<class T> void LinkStack<T>::pop() { if(_top==NULL) { cout<<"stack is empty"<<endl; return; } Node<T> *t=_top; _top=_top->next; delete t; _size--; } template<class T> void LinkStack<T>::push(const T&x) { Node<T>*t=new Node<T>; t->data=x; t->next=_top; _top=t; _size++; } template<class T> int LinkStack<T>::size()const { return _size; } template<class T> const T&LinkStack<T>::top()const { if(_top==NULL) { cout<<"stack is empty"<<endl; T t; return t; } return _top->data; } template<class T> void LinkStack<T>::print()const { Node<T>*t=_top; while(t!=NULL) { cout<<t->data<<" "; t=t->next; } cout<<endl; } #endif // LINKSTACK_H_INCLUDED

 这是一个使用示例

#include <iostream>
#include"LinkStack.h"
using namespace std;

int main()
{
    LinkStack<int> s;
    s.push(1);
    s.push(7);
    s.print();
    s.print();
    s.push(2);
    s.print();
    cout<<s.top()<<endl;
    s.pop();
    s.print();
    s.pop();
    s.print();
    s.pop();
    s.print();
    return 0;
}

这是运行截图

 

转载于:https://www.cnblogs.com/hjw1/p/7914994.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值