【2021秋冬】【剑指offer】52. 两个链表的第一个公共节点

/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
ListNode A = headA, B = headB;
while(A != B){
A = A != null ? A.next : headB;
B

【2021秋冬】【剑指offer】52. 两个链表的第一个公共节点最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/11183.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>