• 大小: 9KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: C/C++
  • 标签:   模板  

资源简介

这个是用模板实现的栈,有利于学习模板,以及学习栈的知识。

资源截图

代码片段和文件信息

/*
    Discription: To implement a class of satck with many operations
    Author: Jiang Liuyang
    Cridit: 2016202185
    Date: 2018/04/20
*/
#include 
#include 
#include 
#include 
#include 

using namespace std;

template  // a template of the class Stack
class Stack // the difination of the class Stack
{
private:
    T* top; // a pointer point to the first position of the array
    int capacity; // the maximal number the stack will contain
    int size; // the number of stack have contained
public:
    Stack(int tem_size) // initial of a stack
    {
        T* p;
        size = 0;
        capacity = tem_size;
        //p = (int *)malloc(sizeof(int)*capacity);
        p = new T [capacity];
        i

评论

共有 条评论