Coming680
Coming680
全部文章
题解
归档
标签
去牛客网
登录
/
注册
德林恩宝的牛客博客
CSDN访问链接baolin.blog.csdn.net
全部文章
/ 题解
(共4篇)
题解 | #字符串排序#
#include<iostream> #include<vector> #include<algorithm> #include<cstdio> using namespace std; int main() { int n; stri...
C++
字符串
2022-03-25
2
561
题解 | #确定两串乱序同构#
class Same { public: bool checkSam(string stringA, string stringB) { // write code here map<char, int> mp; for (int ...
C++
数组
字符串
2022-03-24
1
478
题解 | #CM5 基本字符串压缩#
class Zipper { public: string zipString(string iniString) { // write code here int i = 0,pos; string ans = ""; whi...
C++
字符串
2022-03-24
0
446
题解 | #给表达式添加运算符#
介于数据规模较小,暴力dfs求解即可。 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num string字符串 * @p...
C++
深度优先搜索
字符串
2022-03-21
0
448