你能秒我
你能秒我
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
你能秒我的博客
全部文章
(共21篇)
题解 | #买卖股票的最好时机(一)#
class Solution { public: /** * * @param prices int整型vector * @return(756076230) int整型 */ int maxProfit(vector<int>...
2023-02-17
0
261
题解 | #最长上升子序列(一)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 给定数组的最长严格上升子序列的长度。 * @param arr int整型vector 给定的数组 ...
2023-02-13
0
299
题解 | #打家劫舍(一)#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @return(756076230) ...
2023-02-07
0
282
题解 | #最长回文子串#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param A string字符串 * @return(756076230) int整型...
2023-02-06
0
288
题解 | #把数字翻译成字符串#
class Solution { public: /** * 解码 * @param nums string字符串 数字串 * @return(756076230) int整型 */ int solve(string nums) { ...
2023-01-29
0
267
题解 | #矩阵的最小路径和#
class Solution { public: /** * * @param matrix int整型vector<vector<>> the matrix * @return(756076230) int整型 */ ...
2023-01-28
0
295
题解 | #不同路径的数目(一)#
class Solution { public: /** * * @param m int整型 * @param n int整型 * @return(756076230) int整型 */ int uniquePaths(int ...
2023-01-28
0
329
题解 | #2的幂次方#非递归解法
看上面的大都是递归解法,我当时是没想出来递归解法的,直接暴力解法,供大家娱乐参考。 正规考试建议还是递归的好。 #include<iostream> #include<string.h> using namespace std; string toBinary(in...
C++
数学
递归
2022-02-13
0
499
题解 | #Old Bill#
#include<iostream> using namespace std; void process(int n, int x, int y, int z) { int maxValue = 0; int left=1, right=0; for(int a...
C++
2022-01-16
0
374
题解 | #与7无关的数#
#include<iostream> using namespace std; int relateSeven(int n) { if(n%7==0){ return 1; } while(n!=0){ if(n%10==7){ ...
C++
2022-01-16
0
372
首页
上一页
1
2
3
下一页
末页