摘要: /*** a linked list demo by atoman ***/ #include <iostream> using namespace std; #if 1class nodelist{public: unsigned int uiNum; nodelist* pNext; //nod 阅读全文
posted @ 2017-12-27 17:44 atoman 阅读(210) 评论(0) 推荐(0) 编辑