leetcode-344-反转字符串

Posted nxzblogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-344-反转字符串相关的知识,希望对你有一定的参考价值。

问题:

技术图片

 

package com.example.demo;

public class Test344 
    public void reverseString(char[] s) 
        // 双指针
        int left = 0;
        int right = s.length - 1;
        while (left < right) 
            char temp = s[left];
            s[left] = s[right];
            s[right] = temp;
            left++;
            right--;
        
    

    public static void main(String[] args) 
        Test344 t = new Test344();
        char[] arr = ‘a‘, ‘b‘, ‘c‘;
        t.reverseString(arr);
        for (char c : arr) 
            System.out.println(c);
        
    

 

以上是关于leetcode-344-反转字符串的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 344. Reverse String(反转字符串)

Leetcode 344:Reverse String 反转字符串(pythonjava)

Leetcode 344.反转字符串 By Python

LeetCode 344. 反转字符串

LeetCode344 反转字符串

leetcode-344-反转字符串