番禺小韭菜
番禺小韭菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
番禺小韭菜的博客
全部文章
(共93篇)
题解 | 计算日期到天数转换
#include <iostream> using namespace std; int main() { int year, mon, day; int data[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};...
2025-03-01
0
25
题解 | 字符串通配符
#include <cctype> #include <iostream> using namespace std; bool match(const char* s, const char* p){ if(*s == '\0' && *p == '...
2025-03-01
0
20
题解 | 字符串通配符
#include <algorithm> #include <vector> #include <string> #include <iostream> using namespace std; int main() { string str...
2025-03-01
0
19
题解 | 矩阵乘法计算量估算
#include <iostream> #include <vector> #include <stack> using namespace std; int main() { int n; cin >> n; vector&...
2025-03-01
0
23
题解 | 成绩排序
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int main() { int n,flag;...
2025-02-28
0
28
题解 | 24点游戏算法
#include <algorithm> #include <iostream> #include <vector> using namespace std; double cal(double a, double b, char c) { switch...
2025-02-28
0
28
题解 | 配置文件恢复
#include<iostream> #include<algorithm> #include<vector> using namespace std; int main() { string str; string sigle = "r...
2025-02-28
0
19
题解 | 查找两个字符串a,b中的最长公共子串
#include<iostream> #include<string> #include<vector> using namespace std; int main(){ string s1, s2; while(cin >> s1 ...
2025-02-28
0
26
题解 | 查找两个字符串a,b中的最长公共子串
#include<iostream> #include<string> #include<algorithm> using namespace std; int main() { string s1, s2; while (cin >>...
2025-02-28
0
23
题解 | MP3光标位置
#include <iostream> #include <string> #include <algorithm> using namespace std; int main() { int n; string commands; w...
2025-02-28
0
24
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页