#include <iostream> #include <string> #include <cstring> #include <ctype.h> std::string solution(std::string words, std::string msg){ std::string result; // TODO: int tStrLenW = words.length(); int tStrLenM = msg.length(); int tWordsFlag = 0; int tMsgFlag = 0; char* pCharText = new char[tStrLenW + 1]; memset(pCharText, 0, tStrLenW + 1); while(tStrLenW > tWordsFlag && tStrLenM > tMsgFlag) { if( words[tWordsFlag] == msg[tMsgFlag] ) { pCharText[tMsgFlag] = msg[tMsgFlag]; //strcat(pCharText, &msg[tMsgFlag]); tMsgFlag++; } else { tWordsFlag++; tMsgFlag = 0; } } if(strcasecmp(pCharText, msg.c_str()) == 0) result = "Yes"; else result = "No"; return result; } int main() { std::string words; std::string msg; getline(std::cin, words);; getline(std::cin, msg);; std::string result = solution(words, msg); std::cout<<result<<std::endl; return 0; }
时间: 2024-02-16 10:26:54 浏览: 23
#include <iostream>
这段代码的作用是比较两个字符串 words 和 msg,判断是否可以从 words 中删除一些字符,使得剩下的字符按照原来的顺序可以组成 msg 字符串。
具体实现是,从 words 和 msg 的开头开始比较,如果字符相同,则将该字符添加到结果字符串 pCharText 中,如果不同,则从 words 的下一个字符开始比较。最后,将 pCharText 与 msg 进行比较,如果相同,返回 "Yes",否则返回 "No"。
需要注意的是,在比较字符串时,代码使用了 strcasecmp 函数,该函数可以忽略大小写进行比较。此外,代码中还使用了动态内存分配函数 new 和内存清零函数 memset。
阅读全文