题目描述
开发一个简单错误记录功能小模块,能够记录出错的代码所在的文件名称和行号。 处理: 1.记录最多8条错误记录,对相同的错误记录(即文件名称和行号完全匹配)只记录一条,错误计数增加;(文件所在的目录不同,文件名和行号相同也要合并) 2.超过16个字符的文件名称,只记录文件的最后有效16个字符;(如果文件名不同,而只是文件名的后16个字符和行号相同,也不要合并) 3.输入的文件可能带路径,记录文件名称不能带路径。
输入描述:
一行或多行字符串。每行包括带路径文件名称,行号,以空格隔开。 文件路径为windows格式 如:E:\V1R2\product\fpgadrive.c 1325
输出描述:
将所有的记录统计并将结果输出,格式:文件名代码行数数目,一个空格隔开,如: fpgadrive.c 1325 1 结果根据数目从多到少排序,数目相同的情况下,按照输入第一次出现顺序排序。 如果超过8条记录,则只输出前8条记录. 如果文件名的长度超过16个字符,则只输出后16个字符
输入例子:
E:\V1R2\product\fpgadrive.c 1325
输出例子:
fpgadrive.c 1325 1
#include <iostream> #include <algorithm> #include <cstring> using namespace std; struct s_map{ char str[1000]; int column; int num; }; bool Compare(const s_map& m, const s_map& n) { return m.num>n.num; } int main() { s_map s[1000]; char str[1000]; int column; int count = 0; while(cin>>str>>column) { char *p=strrchr(str,'\\'); ++p; if(strlen(p)>16) { p = p+strlen(p)-16; } int flag = 0; for(int i=0;i<count;i++) { if(strcmp(p,s[i].str)==0&&column ==s[i].column) { flag=1; s[i].num++; break; } } if(flag==0) { strcpy(s[count].str,p); s[count].column = column; s[count].num = 1; count++; } } sort(s,s+count,Compare); int m; if(count>8) m=8; else m=count; for(int i=0;i<m;i++) { cout<<s[i].str<<" "<<s[i].column<<" "<<s[i].num<<endl; } return 0; }