用C语言将两个递增的有序链表合并为一个递增的有序链表。要求结果链表仍使用原来两个链表的存储结构,不另外占用其他的存储空间。表中不允许有重复的数据
时间: 2024-10-14 14:14:50 浏览: 63
在C语言中,合并两个递增有序链表可以采用迭代或递归的方式,由于题目要求不额外占用其他存储空间,我们可以利用原地合并的思想。以下是迭代法的一个例子:
```c
typedef struct ListNode {
int val; // 节点值
struct ListNode *next; // 指向下一个节点的指针
} ListNode;
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
if (l1 == NULL) return l2;
if (l2 == NULL) return l1;
// 如果l1较小,则直接链接
if (l1->val < l2->val) {
l1->next = mergeTwoLists(l1->next, l2);
return l1;
} else {
l2->next = mergeTwoLists(l1, l2->next);
return l2;
}
}
```
这个函数通过不断比较两个链表头结点的值,并将较小的那个作为新的合并链表的一部分,然后递归处理剩下的部分,直到其中一个链表为空,此时将另一个链表剩余部分接到合并后的链表尾部。
相关问题
用C语言将两个递增的有序链表合并为一个递增的有序链表。要求结果链表仍使用原来两个链表的存储空间,不另外占用其他的存储空间。表中不允许有重复的数据。
要将两个递增的有序链表合并为一个递增的有序链表,可以使用双指针法来实现。具体步骤如下:
1. 定义两个指针,分别指向两个链表的头节点,假设为p1和p2。
2. 创建一个新的链表,用于存储合并后的结果,假设为mergedList。
3. 比较p1和p2指向节点的值,将较小的节点添加到mergedList中,并将对应链表的指针后移一位。
4. 重复步骤3,直到其中一个链表遍历完毕。
5. 将未遍历完的链表剩余部分直接添加到mergedList的末尾。
6. 返回mergedList作为合并后的有序链表。
下面是C语言的示例代码实现:
```c
#include <stdio.h>
#include <stdlib.h>
// 定义链表节点结构体
struct ListNode {
int val;
struct ListNode* next;
};
// 合并两个递增有序链表
struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2) {
// 创建一个虚拟头节点
struct ListNode* dummy = (struct ListNode*)malloc(sizeof(struct ListNode));
dummy->next = NULL;
struct ListNode* tail = dummy;
// 双指针法合并链表
while (l1 && l2) {
if (l1->val <= l2->val) {
tail->next = l1;
l1 = l1->next;
} else {
tail->next = l2;
l2 = l2->next;
}
tail = tail->next;
}
// 将未遍历完的链表剩余部分直接添加到结果链表的末尾
tail->next = l1 ? l1 : l2;
// 释放虚拟头节点
struct ListNode* result = dummy->next;
free(dummy);
return result;
}
// 创建链表节点
struct ListNode* createNode(int val) {
struct ListNode* newNode = (struct ListNode*)malloc(sizeof(struct ListNode));
newNode->val = val;
newNode->next = NULL;
return newNode;
}
// 打印链表
void printList(struct ListNode* head) {
struct ListNode* p = head;
while (p) {
printf("%d ", p->val);
p = p->next;
}
printf("\n");
}
int main() {
// 创建两个有序链表
struct ListNode* l1 = createNode(1);
l1->next = createNode(3);
l1->next->next = createNode(5);
struct ListNode* l2 = createNode(2);
l2->next = createNode(4);
l2->next->next = createNode(6);
// 合并两个有序链表
struct ListNode* mergedList = mergeTwoLists(l1, l2);
// 打印合并后的链表
printList(mergedList);
// 释放链表内存
struct ListNode* p = mergedList;
while (p) {
struct ListNode* temp = p;
p = p->next;
free(temp);
}
return 0;
}
```
用C语言建立两个递增有序单向链表,合并为一个递增有序链表
以下是用C语言建立两个递增有序单向链表,并将它们合并为一个递增有序链表的示例代码:
```c
#include <stdio.h>
#include <stdlib.h>
// 定义链表节点结构体
struct Node {
int data;
struct Node* next;
};
// 创建新节点
struct Node* createNode(int value) {
struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));
newNode->data = value;
newNode->next = NULL;
return newNode;
}
// 合并两个有序链表
struct Node* mergeLists(struct Node* list1, struct Node* list2) {
// 创建一个新的头节点
struct Node* head = createNode(0);
struct Node* current = head;
// 比较两个链表的节点值,将较小的节点插入到新链表中
while (list1 != NULL && list2 != NULL) {
if (list1->data <= list2->data) {
current->next = list1;
list1 = list1->next;
} else {
current->next = list2;
list2 = list2->next;
}
current = current->next;
}
// 将剩余的节点连接到新链表的末尾
if (list1 != NULL) {
current->next = list1;
} else {
current->next = list2;
}
// 返回新链表的头节点
return head->next;
}
// 打印链表
void printList(struct Node* head) {
struct Node* current = head;
while (current != NULL) {
printf("%d ", current->data);
current = current->next;
}
printf("\n");
}
int main() {
// 创建第一个有序链表
struct Node* list1 = createNode(1);
list1->next = createNode(3);
list1->next->next = createNode(5);
// 创建第二个有序链表
struct Node* list2 = createNode(2);
list2->next = createNode(4);
list2->next->next = createNode(6);
// 合并两个有序链表
struct Node* mergedList = mergeLists(list1, list2);
// 打印合并后的链表
printList(mergedList);
return 0;
}
```
输出结果为:1 2 3 4 5 6
阅读全文