zoukankan      html  css  js  c++  java
  • 每日leetcode-数组-344. 反转字符串

    分类:字符串-字符串的反转

    题目描述:

    编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 char[] 的形式给出。

    不要给另外的数组分配额外的空间,你必须原地修改输入数组、使用 O(1) 的额外空间解决这一问题。

    你可以假设数组中的所有字符都是 ASCII 码表中的可打印字符。

    解题思路:双指针

    class Solution:
        def reverseString(self, s: List[str]) -> None:
            """
            Do not return anything, modify s in-place instead.
            """
            left = 0 
            right = len(s) - 1
            while left < right:
                s[left],s[right] = s[right],s[left]
                left += 1
                right -= 1                         
            return s
    class Solution:
        def reverseString(self, s: List[str]) -> None:
            """
            Do not return anything, modify s in-place instead.
            """
          
    
            for i in range(len(s)//2):
                s[i],s[-i-1] = s[-i-1],s[i]
            return s

    第二种代码,len(s)//2  是 因为  不除以2交换之后又会交换回来

    时间复杂度:O(n)

    空间复杂度:O(1)

  • 相关阅读:
    Jetty 入门
    Spring MVC 学习 之
    Spring MVC 学习 之
    Spring MVC 学习 之
    call apply 使用
    maven学习系列 之 常见问题
    SQL Server数据库partition by 与ROW_NUMBER()函数使用详解[转]
    .NET 同步 异步 委托
    常用JS方法
    通过 NPOI 生成 Excel
  • 原文地址:https://www.cnblogs.com/LLLLgR/p/14923771.html
Copyright © 2011-2022 走看看