typedef struct node
{
int c;
ine e;
struct node *next;
}dxs;
假设指针:
dxs *h,*p1,*p2,*q;
h=h1(有两个已经开辟好的链表)
p1=h1->next;p2=h2->next(都指向第一个结点)
if(p2->next<p1->next)
{h->next=p1;h=p1,p1=p1->next;}
红色的代表什么,为什么要这样?
我自己想了很久,但是不明白,先谢谢!!!!!!!!!!!!!!!!!!!!!!!!!11