博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode 345. Reverse Vowels of a String
阅读量:5122 次
发布时间:2019-06-13

本文共 529 字,大约阅读时间需要 1 分钟。

345. Reverse Vowels of a String

  • Total Accepted: 30572
  • Total Submissions: 84744
  • Difficulty: Easy

 

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

 

思路:只交换元音字母。元音字母有a,e,i,o,u,不要忘了A,E,I,O,U。

 

 

代码:

1 class Solution { 2 public: 3     string reverseVowels(string s) { 4         string str="aeiouAEIOU"; 5         int i=0,j=s.size()-1; 6         while(i

 

 

转载于:https://www.cnblogs.com/Deribs4/p/5693775.html

你可能感兴趣的文章
类库与框架,强类型与弱类型的闲聊
查看>>
php match_model的简单使用
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
回调没用,加上iframe提交表单
查看>>
LeetCode(3) || Median of Two Sorted Arrays
查看>>
大话文本检测经典模型:EAST
查看>>
待整理
查看>>
一次动态sql查询订单数据的设计
查看>>
C# 类(10) 抽象类.
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
jvm参数
查看>>
我对前端MVC的理解
查看>>
Silverlight实用窍门系列:19.Silverlight调用webservice上传多个文件【附带源码实例】...
查看>>
2016.3.31考试心得
查看>>
mmap和MappedByteBuffer
查看>>
STM32单片机使用注意事项
查看>>
swing入门教程
查看>>
好莱坞十大导演排名及其代表作,你看过多少?
查看>>
Loj #139
查看>>
hihocoder1187 Divisors
查看>>