去哪儿网 filename 字符串
题目链接题目描述Please create a function to extract the filename extension from the given path,return the extracted filename extension or null if none.#include<iostream> #include<algorithm> usi...
题目链接题目描述Please create a function to extract the filename extension from the given path,return the extracted filename extension or null if none.#include<iostream> #include<algorithm> usi...
题目链接题目描述请设计一个算法能够完成两个用字符串存储的整数进行相加操作,对非法的输入则返回error#include<iostream> #include<algorithm> using namespace std; bool judge_str(string str); int main() { string s1,s2; int len1,le...
题目链接题目描述将一句话的单词进行倒置,标点不倒置。比如 I like beijing. 经过函数后变为:beijing. like I#include<iostream> #include<algorithm> #include<vector> using namespace std; const int maxn = 101; //void rever...
题目链接题目描述小易喜欢的单词具有以下特性:1.单词每个字母都是大写字母2.单词没有连续相等的字母3.单词没有形如“xyxy”(这里的x,y指的都是字母,并且可以相同)这样的子序列,子序列可能不连续。例如:小易不喜欢"ABBA",因为这里有两个连续的'B'小易不喜欢"THETXH",因为这里包含子序列"THTH"小易不喜欢"ABACADA",因为这里包含子序列"AAAA"小易喜欢"A","A...
题目链接题目描述“回文串”是一个正读和反读都一样的字符串,比如“level”或者“noon”等等就是回文串。花花非常喜欢这种拥有对称美的回文串,生日的时候她得到两个礼物分别是字符串A和字符串B。现在她非常好奇有没有办法将字符串B插入字符串A使产生的字符串是一个回文串。你接受花花的请求,帮助她寻找有多少种插入办法可以使新串是一个回文串。如果字符串B插入的位置不同就考虑为不一样的办法。例如:A ...