标签:
题目:
写一个函数模拟c++中的strstr函数。该函数的返回值是主串中字符子串的位置以后的所有字符。请不要使用任何c程序已有的函数来完成。
#include<iostream>
using namespace std;
const char* strstr1(const char* string, const char* strCharSet)
{
for (int i = 0; string[i] != ‘\0‘; i++)
{
int j = 0;
int temp = i;
if (string[i] == strCharSet[j])
{
while (string[i++] == strCharSet[j++])
{
if ((strCharSet[j] == ‘\0‘))
return &string[i - j];
}
i = temp;
}
}
return NULL;
}
int main()
{
char* string = "12345554555123";
cout << string << endl;
char strCharSet[10] = {};
cin >> strCharSet;
cout<< strstr1(string, strCharSet) << endl;
system("pause");
return 0;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/wangfengfan1/article/details/47323145