2014年10月8日

链表模板!

摘要: 1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 struct List 8 { 9 int val;10 List *next;11 };12 13 List *head;14 15 void I... 阅读全文

posted @ 2014-10-08 21:11 M.D.LUFFI 阅读(114) 评论(0) 推荐(0) 编辑

导航