LeetCode-Reverse Words in a String[AC源码]
- package com.lw.leet1;
- import java.util.Stack;
- /**
- * @ClassName:Solution
- * @Description:
- * Reverse Words in a String
- * Total Accepted: 26194 Total Submissions: 187094 My Submissions
- * Given an input string, reverse the string word by word.
- *
- * For example
- * Given s = "the sky is blue"
- * return "blue is sky the".
- *
- * Clarification:
- * What constitutes a word?
- * A sequence of non-space characters constitutes a word.
- * Could the input string contain leading or trailing spaces?
- * Yes. However, your reversed string should not contain leading or trailing spaces.
- * How about multiple spaces between two words?
- * Reduce them to a single space in the reversed string.
- *
- * @Author LiuWei
- * @Date 2014年8月15日下午7:48:48
- * @Mail nashiyue1314@163.com
- */
- public class Solution {
- public String reverseWords(String word){
- Stack<String> sstack = new Stack<String>();
- int flag = 0;
- for(int i= 0; i<word.length(); i++){
- while(i<word.length() && word.charAt(i)==' '){
- i++;
- }
- flag = i;
- while(i<word.length() && word.charAt(i)!=' '){
- i++;
- }
- if(flag != i){
- sstack.push(word.substring(flag, i));
- }
- }
- String res = "";
- while(!sstack.isEmpty()){
- res += sstack.pop()+" ";
- }
- // The input string which is made up of space
- if(res.length()==0){
- return "";
- }
- return res.substring(0, res.length()-1);
- }
- public String reverseWords2(String word){
- String res ="";
- int flag = 0;
- for(int i= 0; i<word.length(); i++){
- while(i<word.length() && word.charAt(i)==' '){
- i++;
- }
- flag = i;
- while(i<word.length() && word.charAt(i)!=' '){
- i++;
- }
- if(flag != i){
- res = word.substring(flag, i)+" "+res;
- }
- }
- // The input string which is made up of space
- if(res.length()==0){
- return "";
- }
- return res.substring(0, res.length()-1);
- }
- public static void main(String[] args){
- Solution s = new Solution();
- System.out.println(s.reverseWords2(" hello world "));
- }
- }
LeetCode-Reverse Words in a String[AC源码]的更多相关文章
- LeetCode: Reverse Words in a String:Evaluate Reverse Polish Notation
LeetCode: Reverse Words in a String:Evaluate Reverse Polish Notation Evaluate the value of an arithm ...
- LeetCode Reverse Words in a String II
原题链接在这里:https://leetcode.com/problems/reverse-words-in-a-string-ii/ 题目: Given an input string, rever ...
- [LeetCode] Reverse Vowels of a String 翻转字符串中的元音字母
Write a function that takes a string as input and reverse only the vowels of a string. Example 1:Giv ...
- [LeetCode] Reverse Words in a String II 翻转字符串中的单词之二
Given an input string, reverse the string word by word. A word is defined as a sequence of non-space ...
- [LeetCode] Reverse Words in a String 翻转字符串中的单词
Given an input string, reverse the string word by word. For example, Given s = "the sky is blue ...
- [LeetCode] Reverse Words in a String III 翻转字符串中的单词之三
Given a string, you need to reverse the order of characters in each word within a sentence while sti ...
- LeetCode: Reverse Words in a String 解题报告
Reverse Words in a String Given an input string, reverse the string word by word. For example,Given ...
- java.lang.String 类源码解读
String类定义实现了java.io.Serializable, Comparable<String>, CharSequence 三个接口:并且为final修饰. public fin ...
- 翻String.Format源码发现的新东西:StringBuilderCache
起因: 记不清楚今天是为毛点想F12看String.Format的实现源码了,反正就看到了下图的鸟东西: 瞬间石化有没有,StringBuilder还能这么获取? 研究StringBuilderCac ...
随机推荐
- Yii2 UploadedFile上传文件
通过 UploadFile::getInstance($model, $attribute); UploadFile::getInstances($model, $attribute); Upload ...
- 附加题程序找bug
private: void Resize(int sz){ ){ return; } if(maxSize != sz){ T *arr = new T[sz]; if(arr == NULL){ r ...
- 《C》变量
变量的存储方式和生存周期
- c# 免费版pdf转word尝试
链接:https://pan.baidu.com/s/1Dwuezo6YGe9CdlSyrwQyNg 密码:c81a 1.安装此程序 2.在安装文件的bin下拷贝dll: 3.代码引用 private ...
- 2018软工实践—Alpha冲刺(9)
队名 火箭少男100 组长博客 林燊大哥 作业博客 Alpha 冲鸭鸭鸭鸭鸭鸭鸭鸭鸭! 成员冲刺阶段情况 林燊(组长) 过去两天完成了哪些任务 协调各成员之间的工作 多次测试软件运行 学习OPENMP ...
- OOP 学习笔记汇总
1.1 引用 1.2 const关键字 1.3 动态内存分配 1.4 内联函数和重载函数函数参数缺省值 1.5 类和对象的基本概念与用法1 2.1 类和对象的基本概念2
- 软工实践-Alpha 冲刺 (7/10)
队名:起床一起肝活队 组长博客:博客链接 作业博客:班级博客本次作业的链接 组员情况 组员1(队长):白晨曦 过去两天完成了哪些任务 描述: 已经解决登录注册等基本功能的界面. 完成非功能的主界面制作 ...
- Alpha 冲刺(9/10)
队名 火箭少男100 组长博客 林燊大哥 作业博客 Alpha 冲鸭鸭鸭鸭鸭鸭鸭鸭鸭! 成员冲刺阶段情况 林燊(组长) 过去两天完成了哪些任务 协调各成员之间的工作 多次测试软件运行 学习OPENMP ...
- WPF和Expression Blend开发实例:Loading动画
今天来点实际的,项目中可以真实使用的,一个Loading的动画,最后封装成一个控件,可以直接使用在项目中,先上图: 整个设计比较简单,就是在界面上画18个Path,然后通过动画改变OpacityMas ...
- Markdown使用github风格时报TLS错误解决办法
https://docs.microsoft.com/en-us/officeonlineserver/enable-tls-1-1-and-tls-1-2-support-in-office-onl ...