作业要求参照:[https://edu.cnblogs.com/campus/nenu/2018fall/homework/2446]
随着完成作业的增多,软件工程的原则也逐渐体现在作业代码里了,一些以前的坏习惯也在逐步纠正。让我印象比较深刻的是代码的重复利用这一块。这儿举两个作业进行对比,一个是词频统计,另一个是四则运算。
git地址如下:词频统计:https://git.coding.net/shishishaonian/word_count.githttps://git.coding.net/shishishaonian/word_count.githttps://git.coding.net/shishishaonian/word_count.githttps://git.coding.net/shishishaonian/word_count.git
四则运算:https://git.coding.net/shishishaonian/four_arithmetic_operation.git
在词频统计代码中,我并没有考虑到代码的重复利用,对每一个题目要求都编写一个统计函数,最后整个代码很长,main函数写了接近300行,阅读起来很困难。部分代码如下:
int main(int argc, char** argv) {if (argc &#61;&#61; 3) {FILE *fp &#61; NULL;fp &#61; fopen(argv[2], "r");char ch &#61; fgetc(fp);int len &#61; 0;long totalword &#61; 0;string str &#61; "";map<string, int>mp;vector<string>s;vector
}...//统计词频函数return 0;}if (argc &#61;&#61; 2) {if (strcmp(argv[1], "-s") &#61;&#61; 0) {char ch;int len &#61; 0;long totalword &#61; 0;string str &#61; "";map<string, int>mp;vector<string>s;vector
}...//统计词频函数return 0;}else {char buf[80];char *myFileBasePath &#61;getcwd(buf, sizeof(buf));strcat(buf, "\\");strcat(buf, argv[1]);int judgeDirResultCode &#61; is_dir_exist(myFileBasePath);if (judgeDirResultCode &#61;&#61; 0) { _finddata_t sfind;strcat(buf, "\\*.txt");long lresult &#61; _findfirst(buf, &sfind);do { string path &#61; sfind.name;path &#43;&#61; &#39;\0&#39;;FILE *fp &#61; NULL;fp &#61; fopen(path.c_str(), "r");for (int i &#61; 0; i
}...//统计词频函数}while (_findnext(lresult, &sfind) &#61;&#61; 0);return 0;}strcat(argv[1], ".txt");FILE *fp &#61; NULL;fp &#61; fopen(argv[1], "r");if (fp &#61;&#61; NULL) {printf("该文件/文件夹不存在&#xff01;\n");return 0;}else {char ch &#61; fgetc(fp);int len &#61; 0;long totalword &#61; 0;string str &#61; "";map<string, int>mp;vector<string>s;vector
}...//统计词频函数return 0;}}}if (argc &#61;&#61; 1) {char ch;int len &#61; 0;long totalword &#61; 0;string str &#61; "";map<string, int>mp;vector<string>s;vector
}...//统计词频函数return 0;}
}
这部分代码中&#xff0c;单词统计和词频统计部分的代码是一模一样的&#xff0c;我是把这两个函数在主函数中写了五遍&#xff0c;搞得整个代码又臭又长。如果将两个功能函数在主函数外写成单独的函数&#xff0c;主函数中进行调用&#xff0c;就可以简化很多行代码&#xff0c;使整个代码更加利于阅读。
在四则运算中&#xff0c;我吸取了之前的教训&#xff0c;把功能函数写在了主函数之外&#xff0c;在需要的时候就直接进行调用。部分代码如下&#xff1a;
void CreateEquation(vector<char>&ve)
{...
}
void RPNotation(vector<char>&st,vector<char>ve)
{...
}
void Correct_Ans(vector<char>st,double &correctAns)
{...
}
void PrintfEquation(vector<char>ve)
{...
}
bool Is_Equal(double a,double b)
{...
}
int main(int argc,char** argv)
{srand(time(NULL));if(argc&#61;&#61;1){int rightnum&#61;0;for(int i&#61;0;i<20;i&#43;&#43;){CreateEquation(vec);RPNotation(st,vec);Correct_Ans(st,correctAns);PrintfEquation(vec);printf("\n?");double t;scanf("%lf",&t);if(Is_Equal(correctAns,t)){rightnum&#43;&#43;;printf("答对啦&#xff0c;你真是个天才!\n");}else{printf("再想想吧&#xff0c;答案似乎是%g喔!\n",correctAns);}}printf("你一共答对%d道题&#xff0c;共20道题。",rightnum);return 0;}if(argc&#61;&#61;3){string str&#61;argv[2];for(int i&#61;0;i
}return 0;}
}
这样通过调用外部函数的形式&#xff0c;使整个代码简化了不少&#xff0c;阅读起来也舒服方便了很多。
软件工程中的原则仅仅应用在一两次的作业中可能感觉不到明显优势&#xff0c;但如果应用在长期的代码实践中就会使人直观地感受到它带来的方便与实用。不仅仅可以统一代码风格&#xff0c;还可以提高代码编写速度、方便代码修改、提高阅读体验等。在以后的软件开发中&#xff0c;我们应该善于使用软件工程原则&#xff0c;更加合理简便地进行软件开发。