摘要:
简介 字符函数可以带来处理的方便性. 参考链接 https://blog.csdn.net/weixin_41162823/article/details/80172379 阅读全文
摘要:
简介 动态规划, 用到了最长子序列长度. 用两个for循环就可以得到最长子序列. 参考链接 https://blog.csdn.net/feengg/article/details/80866483 code #include <iostream> #include <vector> #includ 阅读全文
摘要:
简介 简单 code #include <iostream> #include <string> #include <set> #include <algorithm> using namespace std; int main() { string str; set<string> s; whil 阅读全文
摘要:
简介 简单 code #include <iostream> #include <string> #include <map> using namespace std; int main() { string s; while(cin >> s) { map<char, int> m; for(au 阅读全文