摘要: 1 #include //实现单链表的建立,测长和打印 2 #include 3 using namespace std; 4 struct node // 定义节点类型,包含一个数据域和一个指针域 5 { 6 int data; 7 node *next; 8 }; 9 node * creat() 10 ... 阅读全文
posted @ 2017-04-18 15:58 爱简单的Paul 阅读(440) 评论(0) 推荐(0)