如何使用C ++中的链接列表打印出句子?

时间:2017-12-04 16:54:56

标签: c++

我刚开始学习C ++。 我想打印出一个句子或至少一个单词。 我可以使用cout<<<" hello world&#34 ;; 但我想使用链表。 这可能吗?

1 个答案:

答案 0 :(得分:2)

你可以这样做,它使用链接列表并输出一次打印一个单词或空格......

#include <list>
#include <iostream>
#include <string>

int main() {
  std::list<std::string> words;
  words.push_back("hello");
  words.push_back(" ");
  words.push_back("world");
  for (auto const& word : words) {
    std::cout << word;
  }
  std::cout << std::endl;
}