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

leetcode-344-反转字符串

时间:2019-08-03 00:33:48      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:技术   system   while   pac   src   new   nbsp   oid   str   

问题:

技术图片

 

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-反转字符串

标签:技术   system   while   pac   src   new   nbsp   oid   str   

原文地址:https://www.cnblogs.com/nxzblogs/p/11271598.html

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