首页 > 代码库 > LeetCode 345. Reverse Vowels of a String
LeetCode 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".
Note:
The vowels does not include the letter "y".
题目要求:将一个字符串中的元音字母前后调换,设置两个位置,如果两个位置的都是元音字母就调换即可
class Solution {public: string reverseVowels(string s) { char temp = ‘ ‘; string Vowels("aAeEiIoOuU"); int start = 0, end = s.size() - 1; while (start<end) { if (Vowels.find(s[start]) != string::npos&&Vowels.find(s[end]) != string::npos) { temp = s[start]; s[start] = s[end]; s[end] = temp; ++start; --end; }else { if (Vowels.find(s[start]) == string::npos && Vowels.find(s[end]) == string::npos) { ++start; --end; continue; } if (Vowels.find(s[start] == string::npos) && Vowels.find(s[end]) != string::npos) { ++start; } else { --end; } } } return s; }};
LeetCode 345. Reverse Vowels of a String
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。