C语言
xmanstyle
用毫无意义的生活细节淹没彼此
展开
-
c++栈类,以数组为存储结构。
#include #include using namespace std; class Stack{ private: int base; int rear; int size; int *data; public: Stack(int s) {//初始化栈 this->size=s; data=new int[size]; rear=0; base=0; }原创 2016-04-23 12:17:00 · 534 阅读 · 0 评论 -
c++模板类和模板函数的使用
#include #include using namespace std; /**类模板:*/ template class Student { private: T1 age; T1 salery; T2 name; T2 address; public: Student();原创 2016-04-20 22:20:01 · 505 阅读 · 0 评论