码迷,mamicode.com
首页 > 其他好文 > 详细

75.颜色分类

时间:2019-09-16 21:25:05      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:anything   lse   sort   rtc   turn   ret   self   颜色   def   

class Solution:
    def sortColors(self, nums: List[int]) -> None:
        """
        Do not return anything, modify nums in-place instead.
        """
        head, now, tail = 0, 0, len(nums)-1
        while now <= tail:
            if nums[now] == 0:
                nums[now], nums[head] = nums[head], nums[now]
                now, head= now+1, head+1
            elif nums[now] == 2:
                nums[now], nums[tail] = nums[tail], nums[now]
                tail -= 1
            else:
                now += 1

 

75.颜色分类

标签:anything   lse   sort   rtc   turn   ret   self   颜色   def   

原文地址:https://www.cnblogs.com/WJZheng/p/11529987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!