函数模板和类模板 程序举例及个别心里体会

栈类模板的使用   (用多文件程序编写)


       //注意事项   类模板的声明和定义都要写在头文件里,否则发生错误

#include<iostream>
#include<string.h>
using namespace std;
template<typename Type>
class Stack
{
public:
    Stack(int=10);
    ~Stack()
    {
        delete stackPtr;
    }
    int push(const Type&);
    int pop(Type&);
    int isFull() const
    {
        return top==size-1;
    }
    int isEmpty() const     // const 放在函数后表示这个函数是常成员函数, 常成员函数是不能改变成员变量值的函数
    {
        return top==-1;
    }
private:
    int size;
    int top;
    Type* stackPtr;
};
template<typename Type>
Stack<Type>::Stack(int s)
{
    size=(s>0&&s<1000?s:10);
    top=-1;
    stackPtr=new Type[size];
}
template<typename Type>
int Stack<Type>::push(const Type& item)
{
    if(!isFull())
    {
        stackPtr[top++]=item;                    
        return 1;
    }
    return 0;
}
template<typename Type>
int Stack<Type>::pop(Type& popValue)
{
    if(!isEmpty())
    {
        popValue=stackPtr[--top];
        return 1;
    }
    return 0;
}



#include"Stack.h"
int main()
{
    Stack<char> charStack;                 //创建字符型栈对象  charStack
    char c='a';
    cout<<"Pushing elements onto charStack "<<endl;
    while(charStack.push(c))
    {
        cout<<c<<" ";
        c+=1;
    }
    cout<<endl<<"Stack is full can not push "<<c<<endl
    <<"Poping elements from charStack "<<endl;
    while(charStack.pop(c))
    cout<<c<<" ";
    cout<<endl<<"Stack is empty can not pop "<<endl;
    Stack<double> doubleStack(5);                                     //创双精度型栈对象  doubleStack
    double f=1.1;
    cout<<"Pushing elements onto doubleStack "<<endl;
    while(doubleStack.push(f))
    {
        cout<<f<<" ";
        f+=1.1;
    }
    cout<<endl<<"Stack is full can not push "<<f<<endl
    <<"poping elements from doubleStack "<<endl;
    while(doubleStack.pop(f))
    {
        cout<<f<<" ";
    }
    cout<<endl<<"Stack is empty cannot pop"<<endl;
    Stack<int> intStack;                                          //创建整型栈对象  intStack
    int i=1;
    cout<<"Pushing elements onto intStack "<<endl;
    while(intStack.push(i))
    {
        cout<<i<<" ";
        i+=1;
    }
    cout<<endl<<"Stack is full cannot push "<<i<<endl
    <<"poping elements from intStack "<<endl;
    while(intStack.pop(i))
    cout<<i<<" ";
    cout<<endl<<"Stack is empty cannot pop"<<endl;


}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

程序猿的探索之路

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值