2016年8月28日

链表

摘要: #include <iostream>using namespace std;struct MyList{ int data; MyList*next;};void Init(MyList&head){ head.data=0; head.next=NULL;}void ListInsert(MyL 阅读全文

posted @ 2016-08-28 22:51 fendoudexiaoniao 阅读(134) 评论(0) 推荐(0) 编辑

导航