易水寒learning
易水寒learning
全部文章
分类
未归档(2)
题解(22)
归档
标签
去牛客网
登录
/
注册
易水寒learning的博客
全部文章
(共24篇)
递推求解问题——n阶楼梯上楼
#include<iostream> #include<cstdio> using namespace std; const int MAX=91; long long dp[MAX]; int main(){ dp[1]=1; ...
C++
2022-01-26
0
440
Kruskal——还是畅通工程
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; const int MAX=1000; struct Edge{ int from; ...
C++
2022-01-25
0
424
并查集——畅通工程
#include<iostream> #include<cstdio> using namespace std; const int MAX=1000; int father[MAX]; int height[MAX]; void Initial(int n){ ...
C++
并查集
2022-01-25
0
437
哈希——魔咒字典
#include<iostream> #include<cstdio> #include<map> #include<string> using namespace std; map<string, string> dict...
C++
哈希函数
2022-01-24
0
612
映射的应用——哈希
#include<iostream> #include<cstdio> #include<map> using namespace std; map<string, string> student; //map...
C++
哈希函数
2022-01-24
1
503
哈夫曼树
#include<iostream> #include<cstdio> #include<queue> using namespace std; int main(){ int n; while(scanf("%d",&n)!=E...
C++
2022-01-24
0
340
二叉排序树
#include<iostream> #include<cstdio> using namespace std; struct TreeNode{ int data; TreeNode* lchild; TreeNode* rchild; ...
C++
排序树
2022-01-23
0
391
二叉树遍历
#include<iostream> #include<cstdio> #include<string> using namespace std; struct TreeNode{ char data; TreeNode* lchild; ...
C++
二叉树
2022-01-23
0
409
递归——全排列
法一:利用next_permutation(s.begin(), s.end())函数法 #include <iostream> #include <algorithm> using namespace std; int main() { string s; ...
C++
2022-01-22
0
535
贪心算法——鸡兔同笼
#include <iostream> #include <cstdio> using namespace std; int main(){ int a; while(scanf("%d",&a)!=EOF){ int MinNum...
C++
贪心
2022-01-21
0
391
首页
上一页
1
2
3
下一页
末页