牛客206588308号
牛客206588308号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客206588308号的博客
全部文章
(共27篇)
题解 | 合并区间
// struct Interval { // int start; // int end; // Interval(int s, int e) : start(start), end(e) {} // }; #include <vector> #include<a...
2025-03-27
0
15
题解 | 最长回文子串
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param A string字符串 * @return int整型 */ ...
2025-03-25
0
10
题解 | 统计单词
#include<iostream> #include<string> using namespace std; int main(){ string str; getline(cin,str); while(str.find(" "...
2025-03-22
0
16
题解 | 任务调度
#include<iostream> #include<queue> #include<string> using namespace std; const int maxn=100001; struct node{ int from; int t...
2025-03-16
0
20
题解 | 火星A+B
#include<iostream> #include<vector> #include<algorithm> #include<string> using namespace std; int prime[25]; string num1,num2;...
2025-03-14
0
13
题解 | 欧拉回路
#include<iostream> using namespace std; const int maxn=1000; int father[maxn]; int degree[maxn]; int height[maxn]; void initial(int n){ for(...
2025-03-14
0
15
题解 | 二叉树
#include<iostream> using namespace std; int common_father(int x,int y){ if(x==y){ return x; } else if(x>y){ retur...
2025-03-10
0
22
题解 | 单词识别
#include<iostream> #include<map> using namespace std; int main(){ string str; map<string,int> myMap; int i=0; while(...
2025-03-01
0
13
题解 | 对称平方数
#include<iostream> using namespace std; int Reverse(int n){ int answer=0; while(n){ answer*=10; answer+=n%10; n/...
2025-03-01
0
22
题解 | 编排字符串
#include<iostream> #include<string> using namespace std; const int maxn=100; string name[maxn]; int order[maxn]; int main(){ int m; ...
2025-03-01
0
20
首页
上一页
1
2
3
下一页
末页