码迷,mamicode.com
首页 >  
搜索关键字:链表模板、队列模板、顺序表模板、栈模板、    ( 1个结果
链表模板、队列模板、顺序表模板、栈模板、
//利用容器适配器实现栈和队列 #pragmaonce #include<iostream> #include<string> #include<cassert> usingnamespacestd; template<typenameT> structNode { public: Node(constT&d) :_next(NULL) ,_prev(NULL) ,_data(d){} T_data; N..
分类:其他好文   时间:2016-09-06 23:31:54    阅读次数:174
1条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!