implement-strstr

class Solution {
public:
    char *strStr(char *haystack, char *needle) {
        if(strlen(haystack)

你可能感兴趣的:(implement-strstr)