摘要: class Solution { public: int strStr(string haystack, string needle) { int n = haystack.size(), m = needle.size(); if (m == 0) { return 0; } vector<int 阅读全文
posted @ 2021-04-20 22:34 miyanyan 阅读(36) 评论(0) 推荐(0) 编辑