博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode160
阅读量:6080 次
发布时间:2019-06-20

本文共 3239 字,大约阅读时间需要 10 分钟。

/** * Definition for singly-linked list. * public class ListNode { *     public int val; *     public ListNode next; *     public ListNode(int x) { val = x; } * } */public class Solution {    public ListNode GetIntersectionNode(ListNode headA, ListNode headB)        {            if (headA == null || headB == null)            {                return null;            }            else            {                var tempA = headA;                var tempB = headB;                var listA = new List
(); var listB = new List
(); while (headA != null) { listA.Add(headA); headA = headA.next; } while (headB != null) { listB.Add(headB); headB = headB.next; } listA.Reverse(); listB.Reverse(); if (listA.Count > listB.Count) { for (int i = 0; i < listB.Count; i++) { if (listA[i].val != listB[i].val) { if (i > 0) { tempB = listB[i - 1]; } else { tempB = null; } break; } else { if (i > 0) { tempB = listB[i]; } } } return tempB; } else { for (int i = 0; i < listA.Count; i++) { if (listA[i].val != listB[i].val) { if (i > 0) { tempA = listA[i - 1]; } else { tempA = null; } break; } else { if (i > 0) { tempA = listA[i]; } } } return tempA; } } }}

 

补充一个python的实现:

1 class Solution(object): 2     def getIntersectionNode(self, headA, headB): 3         """ 4         :type head1, head1: ListNode 5         :rtype: ListNode 6         """ 7         tempA = headA 8         tempB = headB 9         while tempA != tempB:10             if tempA == None:11                 tempA = headB12             else:13                 tempA = tempA.next14             if tempB == None:15                 tempB = headA16             else:17                 tempB = tempB.next18         return tempA

 

转载于:https://www.cnblogs.com/asenyang/p/6762038.html

你可能感兴趣的文章
福建省促进大数据发展:变分散式管理为统筹集中式管理
查看>>
开发环境、生产环境、测试环境的基本理解和区别
查看>>
tomcat多应用之间如何共享jar
查看>>
Flex前后台交互,service层调用后台服务的简单封装
查看>>
MySQL入门12-数据类型
查看>>
Windows Azure 保留已存在的虚拟网络外网IP(云服务)
查看>>
修改字符集
查看>>
HackTheGame 攻略 - 第四关
查看>>
js删除数组元素
查看>>
带空格文件名的处理(find xargs grep ..etc)
查看>>
华为Access、Hybrid和Trunk的区别和设置
查看>>
centos使用docker下安装mysql并配置、nginx
查看>>
关于HTML5的理解
查看>>
需要学的东西
查看>>
Internet Message Access Protocol --- IMAP协议
查看>>
Linux 获取文件夹下的所有文件
查看>>
对 Sea.js 进行配置(一) seajs.config
查看>>
第六周
查看>>
解释一下 P/NP/NP-Complete/NP-Hard 等问题
查看>>
javafx for android or ios ?
查看>>