摘要:
不能小看这些基本的数据结构,写了才发现还是会有问题出现的。有码有真相:#pragma onceclass MyStack{public: MyStack(void); ~MyStack(void); void Push(int aValue); int Top(); void Pop(); void PrintAll();private: int* m_pData; int m_Len; int m_Top;}; #include "MyStack.h"#include #include #include #include MyStack::MyStack(void):m_ 阅读全文
posted @ 2013-09-10 11:29
hailong
阅读(305)
评论(0)
推荐(0)

浙公网安备 33010602011771号