Uriel's Corner

Research Associate @ Harvard University / Research Interests: Computer Vision, Biomedical Image Analysis, Machine Learning
posts - 0, comments - 50, trackbacks - 0, articles - 594

导航

<2025年4月>
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

留言簿(9)

文章分类(1191)

文章档案(594)

搜索

  •  

积分与排名

  • 积分 - 112666
  • 排名 - 221

最新评论

找出一个数组中重复的数字(数组中的数字来自1-n,只有一个数字重复出现,可能出现两次以上任何次数)
看Discussion get了巧妙思路,把nums[a]=b联想为a.next=b,这样找出重复出现的数字就相当于寻找一个链表中的环

 1 #287
 2 #Runtime: 473 ms (Beats 70.43%)
 3 #Memory: 25 MB (Beats 91.14%)
 4 
 5 class Solution(object):
 6     def findDuplicate(self, nums):
 7         """
 8         :type nums: List[int]
 9         :rtype: int
10         """
11         slow, fast, ans = 0, 0, 0
12         while True:
13             slow = nums[slow]
14             fast = nums[nums[fast]]
15             if slow == fast:
16                 while ans != slow:
17                     ans = nums[ans]
18                     slow = nums[slow]
19                 return ans

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   博问   Chat2DB   管理