题解 | #参数解析#

参数解析

https://www.nowcoder.com/practice/668603dc307e4ef4bb07bcd0615ea677

#include<iostream>
#include<vector>
#include<string>
using namespace std;

int main(){
    string str, temp = "";
    vector<string> result;
    getline(cin, str);
    bool flag = true;
    int count = 0;
    for(int i = 0; i <= str.size(); i++) {
        //如果是空格或是最后一个字符,并且不是“”内的空格就保存起来
        if((str[i] == ' ' || i == str.size() )&& flag == true) {
            result.push_back(temp);
            temp.clear();
        } else if(str[i] != ' ' && str[i] != '\"') { // 不是空格,且不是“,就拼接起来
            temp += str[i];
        } else if(str[i] == ' ' && flag == false){// 是双引号内的空格也拼接起来
            temp += str[i];
        } else if(str[i] == '\"') { 
            count += 1;
            if(count % 2 == 1) { //遇到第一个双引号就不输出空格
                flag = false;
            }else if(count % 2 == 0) { // 第二个可以
                flag = true;
            }
        } 
    }
    cout << result.size() << endl;
    for(auto it = result.begin(); it != result.end(); it++)
        cout << *it << endl;
}

全部评论

相关推荐

11-27 17:35
已编辑
蚌埠坦克学院 C++
深信服 后台开发 n×12
点赞 评论 收藏
分享
11-18 15:57
门头沟学院 Java
最终归宿是测开:这个重邮的大佬在重邮很有名的,他就喜欢打92的脸,越有人质疑他,他越觉得爽😂
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务