链表合并-CSDN博客

网站介绍:文章浏览阅读286次。#include #include #define LEN sizeof(struct node)typedef struct node{ int data; struct node *next;}node;node *create(int n) //建立顺序单链表{ int i; node *head,*tail,*p;//头结