假设有两个按元素值递增排列的线性表,均已单链表形式存储,将这两个单链表归并为一个按元素值递减排列的单链表(C语言版)
#include#include//定义链表节点结构structNode{intdata;structNode*next;};//插入节点到链表头部voidinsertNode(structNode**head,intdata){structNode*newNode=(structNode*)malloc(sizeof(structNode));newNode->data=data;newNode