Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
真的是一个简短的问题,正在寻找,想知道并询问有关处理此类输入的最佳方法的任何提示:
word word word word word word word word word word word
因此,每行上的单词数是完全随机的,并且每个单独的单词都可以添加到某些数据结构中,例如链表或树。
fgets每一行并解析?获取字符()?有什么线索吗?
一次读一行fgets似乎是最好的选择。然后只需使用strtok或类似的东西按空格分割并迭代结果。
fgets
strtok