摘要: 倒数第K个数和中间数。自己编码能力还不行,要多多加油才行啊!!!View Code 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 5 template<class Type> class List 6 { 7 private: 8 template<class T> class LinkNode 9 { 10 public: 11 LinkNode<Type> *link; 12 Type data; 13 LinkN... 阅读全文
posted @ 2011-11-06 23:19 YipWingTim 阅读(323) 评论(0) 推荐(0) 编辑