练习时长的代码练习生
练习时长的代码练习生
全部文章
分类
归档
标签
去牛客网
登录
/
注册
练习时长的代码练习生的博客
全部文章
(共4篇)
题解 | #把数字翻译成字符串#
class Solution { public: int solve(string nums) { if(...
字符串
动态规划
C
C++
2022-08-14
0
355
题解 | #礼物的最大价值#
int maxValue(int** grid, int n, int* m ) { // write code here &nb...
动态规划
C
2022-08-13
0
298
题解 | #走方格的方案数#
方法一:递归 递归说明:n行m列的走法可以看作有n-1行m列最后向下走+n行m-1列最后向右走的走法数之和,即(n,m)=(n-1,m)+(n,m-1)。当只有一条边缘线时就只有一种走法。 #include <stdio.h> int stack(int&...
动态规划
递归
C
2022-06-25
0
436
题解 | #合唱队#
动态规划:时间复杂度O(n^2) #include <stdio.h> #include <string.h> int main(){ int N;scanf("%d",&N);...
动态规划
数组
二分查找
C
2022-06-08
0
415