码迷,mamicode.com
首页 > 编程语言 > 详细

345. Reverse Vowels of a String(C++)

时间:2016-05-14 18:50:20      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

345. Reverse Vowels of a String

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".

 

题目大意:

编写函数输入一个字符串,将其中的元音字母逆置。

 

解题方法:

双指针法(Two Pointers)

 

注意事项:


C++代码:

class Solution {
public:
    string reverseVowels(string s) {
        int left=0;
        int right=s.size()-1;
        string t="aeiouAEIOU";
        while(left<right)
        {
            if(t.find(s[left])==string::npos)
            {
                ++left;
            }
            else if(t.find(s[right])==string::npos)
            {
                --right;
            }
            else
            {
                swap(s[left++],s[right--]);
            }
        }
        return s;
    }
};

 

345. Reverse Vowels of a String(C++)

标签:

原文地址:http://www.cnblogs.com/19q3/p/5493046.html

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