344.回转字符串(javascript)344.ReverseString
原创leetcode题目: https://leetcode-cn.com/problems/reverse-string/
编写一个反转输入字符串的函数。输入字符串是一个字符数组。 s 表格已给出。
不要给另一个数组分配额外的空间,您必须修改输入数组并就地使用它。 O(1) 解决此问题的额外空间。
Write a function that reverses a string. The input string is given as an array of characters s.
You must do this by modifying the input array in-place with O(1) extra memory.
示例 1:
输入:s = [“h”,“e”,“l”,“l”,“o”]
输出:[“o”,“l”,“l”,“e”,“h”]
示例 2:
输入:s = [“H”,“a”,“n”,“n”,“a”,“h”]
输出:[“h”,“a”,“n”,“n”,“a”,“H”]
Example 1:
Input: s = [“h”,“e”,“l”,“l”,“o”]
Output: [“o”,“l”,“l”,“e”,“h”]
Example 2:
Input: s = [“H”,“a”,“n”,“n”,“a”,“h”]
Output: [“h”,“a”,“n”,“n”,“a”,“H”]
var reverseString = function (s) {
    var len = s.length
    var halfLen = Math.floor(len / 2)
    for (let i = 0; i < halfLen; i++) {
    //在s基于原件的转换
        [s[i], s[len - i - 1]] = [s[len - i - 1], s[i]]
    }
    return s
};版权声明
所有资源都来源于爬虫采集,如有侵权请联系我们,我们将立即删除
 itfan123
itfan123






