Update 面试题02.07链表相交,添加C#版

This commit is contained in:
eeee0717
2023-11-07 09:17:40 +08:00
parent 87a6e78e81
commit 451c045a6e

View File

@ -502,6 +502,20 @@ object Solution {
}
}
```
### C#
```C#
public ListNode GetIntersectionNode(ListNode headA, ListNode headB)
{
if (headA == null || headB == null) return null;
ListNode cur1 = headA, cur2 = headB;
while (cur1 != cur2)
{
cur1 = cur1 == null ? headB : cur1.next;
cur2 = cur2 == null ? headA : cur2.next;
}
return cur1;
}
```
<p align="center">