合并两个有序的链表
记得以前写过一个合并两个有序数组的问题,也就是相互比较并放入合适的位置,今天的这个算法和数组的问题其实是一样的,这里不多做介绍了,直接贴出代码:
链表的定义:
void print(List list_head){Node *temp = NULL;if (list_head == NULL)return;temp = list_head;while (temp != NULL){printf("%d ", temp -> data);temp = temp -> next;}}