我遇到了关于wordcounting程序的问题。我希望程序能够告诉我给定字符串中有多少单词,行,字符,唯一行和唯一单词。但是,我一直在解决这个问题。有人可以帮我,特别是关于空白字符吗?
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
#include <string>
using std::string;
#include <set>
using std::set;
unsigned long countLines(const string& s)
{
int nl = 0;
for(int x =0; x<s.size(); x++)
{
if(s[x] == "\0")
nl++;
}
return nl;
}
unsigned long countWords(const string& s)
{
int nw = 0;
char ws = " ";
for (int x = 0; x<s.size(); x++)
{
if (s[x] == ws)
{
nw++;
}
}
return nw;
}
unsigned long countChars(const string& s)
{
int nc = 0;
for (int x = 0; x < s.size(); x++)
{
if ( s[x] != " ")
{
nc++;
}
}
return nc++;
}
unsigned long countuline(const string& s, set<string>& wl)
{
wl.insert(s);
return wl.size(s);
}
unsigned long countuwords(const string& s, set<string>& wl)
{
int nuw = 0;
char ws = " ";
wl.insert(s);
for (int x = 0; x<s.size(); x++)
{
if (s[x] == ws)
{
nuw++;
}
}
return nuw;
}
int main()
{
string line;
while (getline(cin,line))
{
cout << countLines(line) << "\t" << countWords(line) << "\t" << countChars(line) << endl;
}
return 0;
}
答案 0 :(得分:1)
如果性能不是问题,您可以将整个字符串放在流中并读取它。字符串流默认读取单词(使用空格作为拆分字符):
unsigned int count_words(const std::string& str)
{
std::stringstream ss( str );
unsigned int count = 0;
std::string aux_string;
while( ss >> aux_string )
count++;
return count;
}
答案 1 :(得分:0)
countLines始终返回1并且未使用字符串s。在返回之前,你总是将nl设置为零并将其递增1。
int nl = 0;
数字,这句话“Hello World!”的结果是什么?