软件第四次作业(二)

    作业要求:

github:https://github.com/TYshadow/TYshadow/blob/master/5.cpp

查找指定单词频率:

    for (int j = 0; j < wCount - 1; j++)                                  //统计单个单词的个数
    {
        if (words[j].Str == searchword)
        {
            cout << searchword << ":" << words[j].Count<<endl;
            searchword = "true";                                          //未找到做记号
        }
    }
    if (searchword != "true")
    {
        cout << "not find word";
    }

总结:算法方面核心还是上次的作业,稍加改动和删减,关于命令行格式的操作有些疑问,知道要用主函数的参数实现相关功能,但不知怎么具体实现题目里输入"-f"实现程序的某个功能,老师转的那个已经看过了。

posted @ 2016-03-29 20:18  刘天宇  阅读(142)  评论(1编辑  收藏  举报