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

345. Reverse Vowels of a String

时间:2016-10-10 07:43:47      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

Write a function that takes a string as input and reverse only the vowels of a string.

Example 1:
Given s = "hello", return "holle".

Example 2:
Given s = "leetcode", return "leotcede".

 思路:双指针首位夹逼,转成array来swap相对应的vowel,最后输出新的string

118/145

public class Solution {
    public String reverseVowels(String s) {
        ArrayList<Character> check=new ArrayList<Character>();
        check.add(‘a‘);
        check.add(‘e‘);
        check.add(‘i‘);
        check.add(‘o‘);
        check.add(‘u‘);
        check.add(‘A‘);
        check.add(‘E‘);
        check.add(‘I‘);
        check.add(‘O‘);
        check.add(‘U‘);
        
        char[] transfer=s.toCharArray();
        
        int i=0;
        int j=transfer.length-1;
        while(i<j)
        {
            if(!check.contains(transfer[i]))
            {
                i++;
                continue;
            }
            if(!check.contains(transfer[j]))
            {
                j--;
                continue;
            }
            char temp=transfer[i];
            transfer[i]=transfer[j];
            transfer[j]=temp;
            i++;
            j--;
        }
        return new String(transfer);
}
}

 

345. Reverse Vowels of a String

标签:

原文地址:http://www.cnblogs.com/Machelsky/p/5944460.html

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