#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(tolower(words[tWordsFlag]) == tolower(msg[tMsgFlag])) { pCharText[tMsgFlag] = msg[tMsgFlag]; //strcat(pCharText, &msg[tMsgFlag]); tMsgFlag++; } else { tWordsFlag++; tMsgFlag = 0; } } if(pCharText == msg) 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 18:27:01 浏览: 101
这段代码的作用是读入两个字符串words和msg,然后在msg中找出与words匹配的子串,并判断是否完全匹配。如果完全匹配,则返回"Yes",否则返回"No"。
具体实现是先将words和msg的长度存入变量tStrLenW和tStrLenM中,并初始化tWordsFlag和tMsgFlag为0。然后动态申请一个长度为tStrLenW+1的字符数组pCharText,并将其全部初始化为0。
接下来使用while循环,在tStrLenW和tStrLenM均未超出范围的情况下,比较words[tWordsFlag]和msg[tMsgFlag]是否相等。如果相等,则将msg[tMsgFlag]赋值给pCharText[tMsgFlag],并将tMsgFlag加1。如果不相等,则将tWordsFlag加1,并将tMsgFlag重置为0。
循环结束后,再判断pCharText是否与msg完全匹配。如果是,则将result赋值为"Yes",否则将result赋值为"No",最后返回result。
需要注意的是,该代码中使用了一些C语言的库函数,如cstring和ctype.h,因此需要使用g++等支持C++11的编译器进行编译。
相关问题
#include <Winsock2.h> #include <Windows.h> #include <iostream> #include <fstream> #include <string> #include <sstream> #include <vector> #include <map> #pragma comment(lib, "ws2_32.lib") std::map<std::string, std::string> readIniFile(std::string fileName)
这是一个函数的开头,函数名为readIniFile,参数是一个字符串类型的文件名fileName。这个函数的作用是读取一个ini格式的配置文件,并将配置文件中的内容存储到一个std::map<std::string, std::string>类型的变量中。在函数中使用了一些C++的标准库头文件,包括iostream、fstream、string、sstream、vector和map。其中,iostream、fstream和string头文件用于文件操作和字符串处理,sstream用于将字符串转换为其他类型,vector用于存储数组,map用于存储键值对。在函数的最后,使用了#pragma comment指令,告诉编译器链接ws2_32.lib库文件。
#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; }
这段代码的作用是比较两个字符串 words 和 msg,判断是否可以从 words 中删除一些字符,使得剩下的字符按照原来的顺序可以组成 msg 字符串。
具体实现是,从 words 和 msg 的开头开始比较,如果字符相同,则将该字符添加到结果字符串 pCharText 中,如果不同,则从 words 的下一个字符开始比较。最后,将 pCharText 与 msg 进行比较,如果相同,返回 "Yes",否则返回 "No"。
需要注意的是,在比较字符串时,代码使用了 strcasecmp 函数,该函数可以忽略大小写进行比较。此外,代码中还使用了动态内存分配函数 new 和内存清零函数 memset。
阅读全文