stringstream使用案例

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stringstream使用案例相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
http://acm.hdu.edu.cn/showproblem.php?pid=2072

#include<cstdio>
#include<iostream>
#include<string>
#include<map>
#include<sstream>
using namespace std;
int main(void)
{
    string s;
    while(getline(cin,s),s!="#")
    {
        map<string,bool>mp;
        stringstream ll(s);
        string ss;
        while(ll>>ss) mp[ss]=true;
        cout<<mp.size()<<endl;
    }
    return 0;
}

stringstream的用法

以上是关于stringstream使用案例的主要内容,如果未能解决你的问题,请参考以下文章

在案例演示中嵌入片段

C++ 从 unsigned char* 到 stringstream:分段错误(核心转储)错误 [关闭]

使用 stringstream 浮动的字符串

如何使用 stringstream 在 C++ 中将字符串转换为双精度值 [关闭]

stringstream操纵string小总结

如何使用javascript从stringstream内容azure blob存储中下载png文件