力扣hot100_技巧_python版本

一、136. 只出现一次的数字

  • 思路:
    • 任何数和 0 做异或运算,结果仍然是原来的数,即 a⊕0=a。
    • 任何数和其自身做异或运算,结果是 0,即 a⊕a=0。
    • 异或运算满足交换律和结合律,即 a⊕b⊕a=b⊕a⊕a=b⊕(a⊕a)=b⊕0=b。
  • 代码:
python 复制代码
class Solution:
    def singleNumber(self, nums: List[int]) -> int:
        return reduce(xor, nums)

二、169. 多数元素

  • 代码:
python 复制代码
class Solution:
    def majorityElement(self, nums: List[int]) -> int:
        n = len(nums)
        value_counts = defaultdict(int)
        for i in nums:
            value_counts[i] += 1
        for i in value_counts:
            if value_counts[i] >= n/2:
                return i

三、75. 颜色分类

  • 思路:
    两次遍历,第一次将所有的0归为,第二次将所有的1归为
  • 代码:
python 复制代码
class Solution:
    def sortColors(self, nums: List[int]) -> None:
        """
        Do not return anything, modify nums in-place instead.
        """
        def swap(i, j):
            nums[i], nums[j] = nums[j], nums[i]
        n = len(nums)
        ptr = 0
        for i in range(n):
            if nums[i] == 0:
                swap(i, ptr)
                ptr += 1
        for i in range(n):
            if nums[i] == 1:
                swap(i, ptr)
                ptr += 1  

四、31. 下一个排列

  • 代码:
python 复制代码
class Solution:
    def nextPermutation(self, nums: List[int]) -> None:
        """
        Do not return anything, modify nums in-place instead.
        """
        n = len(nums)
        i = n-2
        while i >= 0 and nums[i] >= nums[i+1]:
            i -= 1
        
        if i >= 0:
            j = n-1
            while nums[j] <= nums[i]:
                j -= 1
            nums[i], nums[j] = nums[j], nums[i]
        
        left, right = i+1, n-1
        while left<right:
            nums[left], nums[right] = nums[right], nums[left]
            left += 1
            right -= 1

五、287. 寻找重复数

python 复制代码
class Solution:
    def findDuplicate(self, nums: List[int]) -> int:
        n, i = len(nums), 0
        while i < n:
            t, idx = nums[i], nums[i] - 1  # t 是当前值,idx 是当前值该放到的位置
            if nums[idx] == t:             # 如果当前值已经在它该在的位置上
                if idx != i:               # 表示当前值 t 和它"应该在的位置"的值相等,说明有重复,立即返回
                    return t
                i += 1
            else:
                nums[i], nums[idx] = nums[idx], nums[i]
        return -1
相关推荐
2301_811232981 小时前
机器学习与人工智能
jvm·数据库·python
WangYaolove13141 小时前
基于python的漏洞扫描系统(源码+文档)
python·mysql·django·毕业设计·源码
嵌入式×边缘AI:打怪升级日志1 小时前
Libmodbus 源码总体分析:框架、数据结构与核心函数详解
开发语言·数据结构·php
2401_832402751 小时前
使用Scikit-learn构建你的第一个机器学习模型
jvm·数据库·python
Remember_9931 小时前
Spring 中 REST API 调用工具对比:RestTemplate vs OpenFeign
java·网络·后端·算法·spring·php
Y_031 小时前
浅谈Java虚拟机JVM
java·开发语言·jvm
我命由我123451 小时前
JUnit - 自定义 Rule
android·java·开发语言·数据库·junit·java-ee·android-studio
源代码•宸1 小时前
分布式理论基础——Raft算法
经验分享·分布式·后端·算法·golang·集群·raft
天天进步20151 小时前
Python全栈项目--基于机器学习的垃圾邮件过滤系统
python
YiWait1 小时前
机器学习导论习题解答
人工智能·python·算法