• LeetCode151:Reverse Words in a String


    题目:

    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.

    实现代码:

    #include <iostream>
    #include <algorithm>
    #include <stack>
    #include <string>
    #include <sstream>
    using namespace std;
    
    /*
    
    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.
    */
    
    class Solution {
    public:
        void reverseWords(string &s) 
        {
            
            reverse(s.begin(), s.end());
            string::iterator p_iter = s.begin();
            string::iterator q_iter;
            
            //去除最前面和最后面的空白符
            int index = s.find_first_not_of(' ');
            if(index == string::npos)//如果字符串全为空白符 
            {
                s.clear();
                return;
            }
            s.erase(s.begin(), s.begin()+index);
            int index2 = s.find_last_not_of(' ');
            s.erase(s.begin()+index2+1, s.end()); 
                            
            p_iter = s.begin();
            while(p_iter != s.end())
            {            
                q_iter = p_iter;
                while(*p_iter != ' ' && p_iter != s.end()) p_iter++;
                reverse(q_iter, p_iter);
                bool first = true;
                while(*p_iter == ' ' && p_iter != s.end())//去掉单词间多个空白符,只留下一个 
                {
                    if(first)
                    {
                        p_iter++;
                        first = false;
                    }                    
                    else
                        p_iter = s.erase(p_iter);
                }
    
            }
        }
    
        
     
    };
    
    int main(void)
    {
        string str = " this is   zhou ";
        Solution solution;
        solution.reverseWords(str);
        cout<<str<<endl;
        return 0;
    }
  • 相关阅读:
    SqlSession接口和Executor
    MySQL 存储表情字符
    Lisp学习--Windows下面的开发环境搭建
    使用反射+缓存+委托,实现一个不同对象之间同名同类型属性值的快速拷贝
    GIT团队合作探讨之一-保持工作同步的概念和实践
    关于IE8下media query兼容的解决方案探讨
    git下的团队合作模型及git基础知识汇集
    互联网环境下服务提供的模式
    web统计数据搜集及分析原理
    网站统计及移动应用数据统计相关术语知识详解
  • 原文地址:https://www.cnblogs.com/mickole/p/3669584.html
Copyright © 2020-2023  润新知