Vulkan

2012年10月17日

简单链队列C++

摘要: #include using namespace std;template class MyQueue{public: struct QNode { T data; QNode *next; QNode() { next=NULL; } }; MyQueue() { initQue... 阅读全文

posted @ 2012-10-17 23:05 Vulkan 阅读(170) 评论(0) 推荐(0) 编辑

导航