合并两个循环单链表--------(头节点)

typedef struct node {
	int val;
	struct node* next;
 }Node,*linklist;

以上为结构体:

1.写一个返回尾指针的函数列如

linklist findp(Node* L) {
	Node* s;
	s = L->next;
	while (s->next != L ) {
		s = s->next;
	}
	return s;
}

注意:此函数中 return前的 t->text ......变成   t->text=L->next 会使寻找;尾节点;的函数进入循环

linklist headlist(Node* L) {
	L->next = NULL;
	int nums[4] = { 4,5,1,9 };
	Node* s;
	for (int i = 0; i < 4; i++) {
		
		s= (Node*)malloc(sizeof(Node));
		s->val = nums[i];
		s->next = L->next;
		L->next = s;
	}
	Node* t;
	t = (Node*)malloc(sizeof(Node));
	t = L->next;
	while (t->next != NULL) {
		t = t->next;
	}
	t->next = L;
	return L;
}

合并链表函数如下:

linklist connectlist(Node* Ta, Node* Tb) {
	Node* r1, * r2;
	r1 = findp(Ta);
	r2 = findp(Tb);
	Node* p;
	p = r1->next;
	r1->next = r2->next->next;
	free(r2->next);
	r2->next = p->next;
	return Ta;

}

m=connectlist(Ta, Tb);

C++中,将两个循环单链表合并通常需要创建一个循环链表,同时遍历这两个原有的链表,依次添加节点链表中。以下是合并过程的一个简单示例: ```cpp #include <iostream> // 定义单链表节点结构体 struct ListNode { int val; ListNode* next; ListNode(int x) : val(x), next(NULL) {} }; // 合并两个循环链表 ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) { // 创建节点和尾指针 ListNode* head = nullptr, *tail = nullptr; if (l1 != nullptr) { head = l1; tail = l1; } else if (l2 != nullptr) { head = l2; tail = l2; } // 遍历两个链表,将较小的元素添加到链表 while (l1 && l2) { if (l1->val <= l2->val) { tail->next = l1; l1 = l1->next; tail = tail->next; } else { tail->next = l2; l2 = l2->next; tail = tail->next; } } // 如果其中一个链表还有剩余,将其连接链表末尾 if (l1) { tail->next = l1; } else { tail->next = l2; } return head; // 返回链表节点 } // 打印链表 void printList(ListNode* node) { while (node != nullptr) { std::cout << node->val << " -> "; node = node->next; } std::cout << "nullptr\n"; } int main() { // 例子:假设有两个循环链表l1 = [1, 2, 3] 和 l2 = [4, 5] ListNode* l1 = new ListNode(1); l1->next = new ListNode(2); l1->next->next = new ListNode(3); l1->next->next->next = l1; ListNode* l2 = new ListNode(4); l2->next = new ListNode(5); l2->next->next = l2; ListNode* mergedList = mergeTwoLists(l1, l2); printList(mergedList); return 0; } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值