链表插入排序 链表指针实现
摘要:
#include#includetypedef struct node* link; //链接struct node{ int item; link next; };//节点int main(void){ struct node heada, headb; ... 阅读全文
posted @ 2018-02-14 17:57 MACHINE_001 阅读(128) 评论(0) 推荐(0)
posted @ 2018-02-14 17:57 MACHINE_001 阅读(128) 评论(0) 推荐(0)
posted @ 2018-02-14 11:00 MACHINE_001 阅读(115) 评论(0) 推荐(0)