c++怎么统计单词个数

c++
926
2023/12/18 3:54:00
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C++中,可以使用以下方法来统计单词个数:

  1. 使用字符串流(stringstream)和循环来逐个读取单词并计数。
#include <iostream>
#include <sstream>

int countWords(const std::string& sentence) {
    std::stringstream ss(sentence);
    std::string word;
    int count = 0;

    while (ss >> word) {
        count++;
    }

    return count;
}

int main() {
    std::string sentence = "Hello world, this is a sentence.";
    int wordCount = countWords(sentence);
    std::cout << "Word count: " << wordCount << std::endl;

    return 0;
}
  1. 使用字符串的find_first_of函数和循环来逐个找到单词并计数。
#include <iostream>
#include <string>

int countWords(const std::string& sentence) {
    int count = 0;
    size_t pos = sentence.find_first_of(" \t\n");

    while (pos != std::string::npos) {
        count++;
        pos = sentence.find_first_of(" \t\n", pos + 1);
    }

    return count + 1;
}

int main() {
    std::string sentence = "Hello world, this is a sentence.";
    int wordCount = countWords(sentence);
    std::cout << "Word count: " << wordCount << std::endl;

    return 0;
}

这些方法可以根据空格、制表符、换行符等作为单词的分隔符进行统计。请根据实际需求选择使用。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: C++命名空间如何提高编译速度