摘要: 【声明】本博客内容可以随意转载,但请您注明出处:http://www.cnblogs.com/hanxi/代码可能有很多不足之处或有错误,还望各路朋友们指点指点。1.计算一个字符串在另一个字符串中出现的次数程序思想:调用find函数查找子串,找到一个就记录一次,并接着往下找,直到找不到为止。/*函数作用:用来计算一个字符串在另一个字符串中出现的次数*/#include <string>using std::string; int count_str(string maxstr, string minstr){ int count = 0; int i = 0; while ((i 阅读全文
posted @ 2011-06-12 01:28 涵曦 阅读(2899) 评论(0) 推荐(0) 编辑