码迷,mamicode.com
首页 > 其他好文 > 详细

作业4:结对编程—词频统计

时间:2016-03-29 23:41:35      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

结对对象:石莉静  

技术分享

 

源程序:

#include <iostream>
#include <vector>
#include <algorithm> 
#include <string>
#include <fstream>
using namespace std;

struct WORD
{
    string word;
    int num;
};

vector<WORD> a;  //创建vector对象,a[]

int&value(const string&s)
{
    for(int i=0;i<a.size();i++)
        if(s==a[i].word)
            return a[i].num;
        WORD p;
        p.word=s;
        p.num=0;
        a.push_back(p);  //在数组a最后添加数据
        return a[a.size()-1].num;
}

int main()
{
    string str;
    cout << "输入字符串:\n";
    char c;
    while(c=cin.get())
    {
        if((c>=a && c<=z) || (c>=A && c<=Z) || c==  || c==\n)  
            str+=c;   //去除符号
        if(c==\n)
            break;
    }
//输出去掉非英文字符的字符串
    
    
    for(int j=0;str[j]!=\0;j++)
    {
        if(str[j]>=A&&str[j]<=Z)
        {
            str[j]+= 32;  //大写字母Ascll码+32转换为小写
        }
    }
 //输出转换为小写的字符串

    string buf;
    ofstream fout("D:\123.txt");  //把转换好的字符串写入文件
    fout<<str;
    fout.close ();
    ifstream fin("D:\123.txt");  //读出写入的字符串并排序
    cout<<"输入统计单词:";
    char m;
    cin>>m;  //待统计单词m
    int total=0;    
    if(!strcmp(p,m))
    {
        total++;
    }
    while(fin>>buf)
    {
        value(buf)++;
    }
    vector<WORD>::const_iterator p;  //迭代器访问元素
    for(p=a.begin();p!=a.end();++p)
        cout<<p->word<<":"<<p->num<<\n;    
    return 0;
}

 

通过两次结对作业,可以明显的感受到合作的乐趣,枯燥的时间两个人一起可以变得更加精彩,对于不懂得地方一边百度一边讨论自己的想法,积少成多,比一个人慢慢磨要有效率的多。花了将近三个小时,讨论了不少观点,交换了各自的想法,也有对别人的算法进行分析,受益匪浅。

作业4:结对编程—词频统计

标签:

原文地址:http://www.cnblogs.com/cchenhui/p/5335196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!