2014年6月8日
摘要: #include using namespace std;struct Node{ Node *next; int elem;};void creatList(Node* &head){ head = new Node; int elem; cin>>elem; ... 阅读全文
posted @ 2014-06-08 16:51 Clivia_zhou 阅读(381) 评论(0) 推荐(0) 编辑