摘要: View Code 1 #include <assert.h> 2 #include <ctype.h> 3 #include <iostream> 4 using namespace std; 5 6 template<class Type> 7 struct genListNode 8 { 9 int utype; 10 union { 11 int ref; 12 Type value; 13 genListNode<Type>* hlink; 14 }info; 15 genListN... 阅读全文
posted @ 2011-10-26 00:17 crazykeyboard 阅读(251) 评论(0) 推荐(0) 编辑