摘要: 1.新建算法:使p1指向新开辟的结点,p2指向链表中最后一个结点,把p1所指的结点连接在p2所指结点的后面,用“p2->next=p1”来实现。 1 #include 2 #include 3 #include 4 5 #define LEN sizeof(struct student) 6 7... 阅读全文
posted @ 2013-10-23 16:49 Andy Cheung 阅读(455) 评论(1) 推荐(0) 编辑