摘要: 1 #include 2 using namespace std; 3 4 5 template 6 struct SLNode 7 { 8 T data; 9 SLNode* next; 10 SLNode(SLNode*nextNode=NULL){next=nextNode;} 11 SLNode(const T... 阅读全文
posted @ 2016-10-13 23:28 保暖婆婆 阅读(356) 评论(0) 推荐(0) 编辑