strstr函数

ACM模版c++ strstr /* * strstr函数 * 功能:在串中查找指定字符串的第一次出现 * 用法:char *strstr(char *strOne, char *strTwo); * 听说strstr函数和KMP的算法效率差很少 */ int main(int argc, const char * argv[]) { char strOne[] = "Borland I
相关文章
相关标签/搜索