kevin231
kevin231
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
kevin231的博客
全部文章
(共7篇)
题解 | #日期差值#
#include <iostream> using namespace std; bool isLeapyear(int year){ if((!(year % 4) && (year % 100 != 0)) || year%400 == 0 ) return ...
2022-06-12
0
307
题解 | #二叉排序树#
二叉排序树 测试用例中有重复数据,应忽略这些数据(题意) #include<iostream> #include <string> using namespace std; struct TreeNode{ int s; TreeNode * left; Tre...
2022-05-21
0
311
题解 | #全排列#
递归 #include #include using namespace std; void fun( string a, string b){ if(a.size() == 0){ cout << b << endl; re...
2022-05-18
0
207
题解 | #Head of a Gang#
并查集 建图 得到并查集 遍历帮派,通过 vecter 记录信息 遍历帮派成员 输出 #include <iostream> #include <string> #include <vector> using namespace std; const in...
C++
2022-05-12
0
381
题解 | #找出直系亲属#
邻接表 + dfs #include<iostream> #include<cstring> using namespace std; const int N = 30; int idx, h[N], e[N], ne[N]; int dfs(int x, int y...
C++
2022-05-12
0
351
题解 | #代理服务器#
贪心 #include<iostream> #include<vector> #include <string> #include <algorithm> using namespace std; vector<string> a, b...
C++
2022-05-11
3
279
题解 | #字符串匹配#
kmp 算法 + 递归算法 #include <iostream> #include <vector> #include <string> using namespace std; const int N = 1005; int n; string str[N]...
C++
2022-05-04
0
330