大内高手
大内高手
全部文章
题解
前端(1)
归档
标签
去牛客网
登录
/
注册
大内高手
There is challenge, there is chance.
全部文章
/ 题解
(共29篇)
最长公共子序列
状态转移方程为: 当s1[i] = s2[j]时: 当s1[i] != s2[j]时: // runtime: 4ms // space: 504K // complexity: O(m*n) #include <iostream> #include <cstring&...
CPP
DP
2020-03-18
5
775
合唱队形
两次DP求最长递增子序列,然后,结果是 // runtime: 3ms // space: 496K #include <iostream> #include <algorithm> using namespace std; const int MAX = 100; i...
CPP
DP
2020-03-17
0
596
最大上升子序列和
最长递增子序列的变形问题。 // runtime: 4ms // space; 496K #include <iostream> #include <cstdio> using namespace std; const int MAX = 1000; int arr[MAX...
CPP
DP
2020-03-17
3
837
最长递增(减)子序列
// runtime: 4ms // space: 504K #include <iostream> #include <cstdio> using namespace std; const int MAX = 25; int arr[MAX]; int dp[MAX]; ...
CPP
DP
2020-03-17
3
821
二叉排序树
本题考察的是二叉树的建立,并且输出父节点的值。所以函数Insert的参数里多了一个int型的变量father,记录的是父节点的值。因为二叉排序树的新增节点都是在叶子处,所以root == NULL时,新建一个结点BTree(x)。 // runtime: 5ms // space: 504K #in...
CPP
二叉树
2020-03-15
11
942
二叉树的遍历
此题考察最基本的二叉树的构造和中序遍历。 // runtime: 3ms // space: 488K #include <iostream> #include <string> using namespace std; // 二叉树结构体 struct BTree { ...
CPP
二叉树
2020-03-14
0
717
2的幂次方
此题的题意是给定一个数n,先分解成二进制和的形势2的i次方的和 。比如: ,而系数 ,直到2上面的系数i全为0或者1为止。2直接输出为2, 输出为2(0),所以输入为9,输出为2(2+2(0))+2(0),即 。 所以此题非常适合使用递归策略。 // runtime: 4ms // space: 4...
递归
CPP
2020-03-12
6
839
递归&分治
分治:即把一个复杂的问题分成两个或多个子问题,子问题之间相互独立且与原问题相同或相似,持续分解,直到最后的子问题可以简单的求解。原问题即子问题解的合并。 由于反复利用分治手段,这就为使用递归策略提供了条件。 解法:采用递归策略,根据二叉树的性质:左子树编号为2m,右子树为2m+1,不断的去计算节点...
递归
CPP
2020-03-12
13
770
全排列
答案代码很简单,其实写这篇题解没有多大思想上的提升,而是我们的武器库增加了一个库函数,而这个库函数就是next_permutation #include <iostream> #include <algorithm> using namespace std; int main...
STL
全排列
CPP
2020-03-12
22
1579
首页
上一页
1
2
3
下一页
末页