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

逆转字符串leetcode

时间:2014-07-21 08:20:33      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   

public class Solution {
    
    
    public  String reverseWords(String s) {
          String ans=reverse(s);
  
         String s2[]=ans.split("\\s+");
         StringBuffer sb=new StringBuffer();
         for(int i=0;i<s2.length;i++)
         {
             
             sb.append(reverse(s2[i])+" ");
             
             
         }
    
        
         
         
    
         return  sb.toString().trim();
        
        
    }
    private  String reverse(String s)
    {
        
        int len=s.length();
        char c[]=s.toCharArray();
        for(int i=0;i<len/2;i++)
        {
            char tem=c[i];
            c[i]=c[len-1-i];
            c[len-1-i]=tem;
            
            
            
            
        }
         return String.valueOf(c);
        
    }
   
    
}

逆转字符串leetcode,布布扣,bubuko.com

逆转字符串leetcode

标签:style   blog   color   os   io   for   

原文地址:http://www.cnblogs.com/hansongjiang/p/3857394.html

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