链表模板!
摘要: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
posted @ 2014-10-08 21:11