摘要: #include <stdio.h>#include <stdlib.h>#include <iostream>using namespace std;template <class T>struct Entry;template <class T>struct Link_head{ Entry<T>* next; int size;};template <class T>struct Entry{ Entry<T>* next; T* element;};template <class T& 阅读全文
posted @ 2011-09-01 07:53 Richard Zhong 阅读(339) 评论(0) 推荐(0) 编辑