【算法导论学习-23】两个单链表(single linked)求交点

问题:A、B两个单链表如果有交点,返回第一个交点在A中的位置(链表头结点位置为0)。

分析:A、B如果有交点,交点的后继一定也是交点,所以一定是Y型相交,所以算法的思想如下

1)  求得A、B的长度,比如ALength,Blength

2)  判断ALength,Blength谁大,比如Alength>Blength

3)  Alength移动到Alength-Blength的位置,开始判断每个节点是否相等,相等则退出。

 

以本博客中“【算法导论学习-20】单链表(single linked)的实现”为单链表类,Java实现:

    

/*返回结点在A链表中的位置,注意,链表首结点位置为0*/
	public static Integer getPositionofFirstIntersectionNode(SinglyLinkedList<Integer> A,SinglyLinkedList<Integer> B) {
		int lenghtofA=A.getLength();
		int lengthofB=B.getLength();
		int counter=-1;
		/*获得头指针*/
		Node<Integer> nodeofA=A.getPreHead();
		Node<Integer> nodedofB=B.getPreHead();
		/*将两个链表对齐*/
		if (lenghtofA!=lengthofB) {
			while (lenghtofA>lengthofB) {
				 nodeofA= nodeofA.getNext();
				 lenghtofA--;
				 counter++;
			}
			while (lenghtofA<lengthofB) {
				nodedofB=nodedofB.getNext();
				 lenghtofA--;
			}
			
		}
		/*对齐后判断每个结点是否相等*/
		while (nodeofA!=null&&nodedofB!=null) {
			if (nodeofA.equals(nodedofB)) {
				break;
			}else {
				 nodeofA= nodeofA.getNext();
				 nodedofB=nodedofB.getNext();
				 counter++;
			}
		}
		return counter;
	}

******************************************************************

测试:

public static void main(String[] args) {
		// TODO 自动生成的方法存根		
		SinglyLinkedList<Integer> singlyLinkedListA = new SinglyLinkedList<>();
		SinglyLinkedList<Integer> singlyLinkedListB = new SinglyLinkedList<>();
		Node<Integer> node1=new Node<Integer>(-1);
		Node<Integer> node2=new Node<Integer>(1);
		Node<Integer> node3=new Node<Integer>(2);
		Node<Integer> node4=new Node<Integer>(0);
		Node<Integer> node5=new Node<Integer>(3);
		Node<Integer> node6=new Node<Integer>(4);
		Node<Integer> node7=new Node<Integer>(5);
		singlyLinkedListA.add(node1);
		singlyLinkedListA.add(node2);
		singlyLinkedListA.add(node3);
		singlyLinkedListA.add(node5);
		singlyLinkedListA.add(node6);
		singlyLinkedListA.add(node7);
		singlyLinkedListB.add(node4);
		singlyLinkedListB.add(node5);
		singlyLinkedListB.add(node6);
		singlyLinkedListB.add(node7);
		int positon=getPositionofFirstIntersectionNode(singlyLinkedListA, singlyLinkedListB);
		System.out.println(positon);
	}



### Python实现两个单链表的并集 为了计算两个单链表的并集,可以采用类似于引用中的方法[^2]。具体来说,可以通过遍历两个链表并将其中的元素逐步加入到一个新的列表中来完成操作。 以下是基于Python的一个解决方案: #### 单链表定义 首先需要定义一个简单的单链表节点类 `ListNode` 和一些辅助函数用于创建和打印链表。 ```python class ListNode: def __init__(self, value=0, next=None): self.value = value self.next = next def create_linked_list(elements): dummy = ListNode() current = dummy for element in elements: current.next = ListNode(element) current = current.next return dummy.next def print_linked_list(head): result = [] while head: result.append(str(head.value)) head = head.next print(" -> ".join(result)) ``` #### 并集算法实现 接下来是一个完整的并集算法实现,该算法会将两个链表合并成一个新的链表,并去除重复项。 ```python def union_linked_lists(l1, l2): seen = set() # 使用集合存储已经访问过的值 dummy = ListNode() tail = dummy # 遍历第一个链表 current = l1 while current: if current.value not in seen: seen.add(current.value) tail.next = ListNode(current.value) tail = tail.next current = current.next # 遍历第二个链表 current = l2 while current: if current.value not in seen: seen.add(current.value) tail.next = ListNode(current.value) tail = tail.next current = current.next return dummy.next ``` 此代码片段实现了两个单链表的并集功能[^3]。它通过维护一个集合 `seen` 来跟踪已处理的值,从而确保最终结果中不会存在任何重复值。 #### 测试代码 下面是一些测试用例,展示如何使用上述函数。 ```python # 创建两个链表 list1 = create_linked_list([1, 2, 4]) list2 = create_linked_list([1, 3, 4]) print("List 1:") print_linked_list(list1) print("List 2:") print_linked_list(list2) # 计算并集 union_result = union_linked_lists(list1, list2) print("Union of List 1 and List 2:") print_linked_list(union_result) ``` 运行以上代码将会输出如下内容: ``` List 1: 1 -> 2 -> 4 List 2: 1 -> 3 -> 4 Union of List 1 and List 2: 1 -> 2 -> 4 -> 3 ``` 这表明程序成功去除了重复项并返回了一个新的链表作为两者的并集[^1]。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值