资源简介
这个是用模板实现的栈,有利于学习模板,以及学习栈的知识。
代码片段和文件信息
/*
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
- 上一篇:MOPSO算法代码
- 下一篇:OpenGL绘制长方体
相关资源
- C876模板(基于战舰STM32F103开发板)
- rtthread工程模板
- c++ 获取当前执行位置的调用栈
- Linux TCP IP 协议栈分析.pdf
- C++实战源码-vector模板类的应用
- C++实战源码-使用函数模板进行排序
- C++实战源码-通过函数模板返回最小值
- C++实战源码-模板的实现
- 网络流dinic算法模板
- 网络流Ford-Fulkerson算法模板
- 基于x86 + linux 的堆栈回溯实验(xos_
- C++实战源码-链表类模板的应用
- C++面向对象程序设计自定义类模板库
- 数据结构教程第五版李春葆课后习题
- (halcon+mfc)模板匹配demo源码
- 机动车行驶证PSD模板
- halcon入门最快 C++联合 模板查找
- 一个简单的遗传算法的模板
- 堆栈实现的计算器,c++语言
- lru算法c语言实现,采用了堆栈.
- 单链表的类模板定义与实现
- 背包问题C++用栈解决
- 自己用C语言写的简单计算器,用堆栈
- 栈与四则混合运算的实现
- 设计一个算法采用顺序栈判断表达式
- 带旋转的模板匹配的原理及算法实现
- 数据结构(C语言版)迷宫求解问题
- 数据结构中二叉树的模板实现c++基本
- c++实现迷宫栈与二位数组的应用,含
- BigInteger(大整数类,部分模板)
评论
共有 条评论