欢迎来到天天文库
浏览记录
ID:57908894
大小:46.00 KB
页数:6页
时间:2020-04-03
《字符串操作课程设计报告.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、南京理工大学VC++课程设计报告南京理工大学VC++课程设计报告课程:VC++课程设计系别:计算机科学与技术大类班级:学号:9姓名:韩飞选题1名称:字符串操作选题1难易级别:A级选题2名称:选题2难易级别:自报成绩:起止时间:指导教师:严悍2013年09月5南京理工大学VC++课程设计报告目录1课题目标通过多种成员函数的定义和运算符的重载,实现字符串的各种直接操作,如:去掉串首串尾与子串相同的子符,子串在主串的定位,用新子串更换主串中的指定子串,比较字符串的大小,字符串连接等,所有功能已经经过验证.2程序具体实现原理2.1总体方
2、案设计一个类,在类中包含对字符串操作的成员函数,然后在主函数中用类的对象来调用成员函数,实现字符串操作的功能。2.1.1开发平台VC++6.0;2.1.2基本原理5南京理工大学VC++课程设计报告字符串操作流程图菜单显示项目选择循环字符串加法字符串减法字符串比较字符串具体操作删除字符串首部相同字符删除字符串尾部相同字符删除字符串所有重复字符字符串的插入操作字符串的替换操作字符串的倒置替换操作开始选择判断退出退出132254513467选择错误输入重选5南京理工大学VC++课程设计报告2.2程序各个功能说明2.2.1程序结构cla
3、ssFstring{private:char*str;intnlength;public:voidcopy(constchar*s);Fstring(){str=NULL;}Fstring(char*s);Fstring(boolb);Fstring(inti);Fstring(doubled);Fstring(constFstring&f){this->copy(f.str);this->nlength=f.nlength;}~Fstring();intgetLength();char*getstr(){returnthis-
4、>str;}Fstring&operator=(constchar*s);Fstring&operator=(constFstring&f);voidshow(){cout<<(this->str);}Fstringoperator+(constchar*sAppend);//重载加法运算符Fstringoperator+(constFstringsAppend);//重载加法运算符Fstring&operator+=(constchar*sAppend);//重载加法运算符Fstring&operator+=(constFst
5、ringsAppend);//重载加法运算符Fstringoperator-(constchar*sSub);//重载减法运算符Fstringoperator-(constFstringsSub);//重载减法运算符Fstring&operator-=(constchar*sSub);//重载减法运算符Fstring&operator-=(constFstringsSub);//重载减法运算符intoperator<(constchar*val);//重载关系<运算符intoperator<(constFstringval);/
6、/重载关系<运算符intoperator<=(constchar*val);//重载关系<=运算符intoperator<=(constFstringval);//重载关系<=运算符intoperator>(constchar*val);//重载关系>运算符intoperator>(constFstringval);//重载关系>运算符5南京理工大学VC++课程设计报告intoperator>=(constchar*val);//重载关系>=运算符intoperator>=(constFstringval);//重载关系>=运算
7、符intoperator!=(constchar*val);//重载关系!=运算符intoperator!=(constFstringval);//重载关系!=运算符intoperator==(constchar*val);//重载关系==运算符intoperator==(constFstringval);//重载关系==运算符FstringLeft(constintnlength);//从字符串左边取出nlength个字符FstringRight(constintnlength);//从字符串右边取出nlength个字符int
8、Instr(constintnStart,constchar*sSearch,constboolbCaseSensitive=true);/*从第nStart个字符处开始,在字串对象寻找字串sSearch,参数bCaseSensitive表示忽略大小写*/int
此文档下载收益归作者所有