链表中环的入口结点 发表于 2018-06-01 | 分类于 interview | 次 ###题目 写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。 解题思路给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出null。 代码实现123456789class Solution: def EntryNodeOfLoop(self, pHead): l = [] while pHead is not None: if pHead in l: return pHead l.append(pHead) pHead = pHead.next return None 打赏 微信支付 支付宝