C语言两个非递减链表合为一个非递减链表问题。看一位博主写的程序,但他是合并为递减链表,请问要做什么修改呢?#include #include typedef struct list { int data; struct list * next; //下一个节点地址 }list; //第一条链表 struct list * L=NULL;//头 struct list * head=NULL;//首 struct list * p=NULL; //第二条链表 struct list * L1=NULL;//头 struct list * head1=NULL;//首 struct list * p1=NUL...