诗云panther
诗云panther
全部文章
分类
生活 篮球(1)
题解(81)
归档
标签
去牛客网
登录
/
注册
诗云panther的博客
TA的专栏
9篇文章
0人订阅
昆· 希斯莱杰
9篇文章
3401人学习
全部文章
(共81篇)
题解 | #连续子数组的最大和#
class Solution {public: /* int find_num1(int n){ int count = 0; while(n){ if(n%10 == 1){ count++; ...
2021-08-16
3
502
题解 | #斐波那契数列#
function fibonacci(n) { if(n==1){ return 1; } else if(n==2){ return 1; } else { return arguments.callee(n-1)+argum...
2021-08-16
4
616
题解 | #根据包名,在指定空间中创建对象#
function namespace(oNamespace, sPackage) { var arr = sPackage.split("."); var res = oNamespace; for(var i=0, len = arr.length;i<...
2021-08-16
2
587
题解 | #牛牛排队#
/** struct Point { int x; int y; Point(int xx, int yy) : x(xx), y(yy) {} }; /class Solution {public: /** 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 能回到1号...
2021-08-16
3
559
题解 | #回路#
/** struct Point { int x; int y; Point(int xx, int yy) : x(xx), y(yy) {} }; /class Solution {public: /** 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 能回到1号...
2021-08-16
2
461
题解 | #牛牛凑数字#
class Solution {public: /** * 得到牛牛能够凑到的最大的数字 * @param n int整型 牛牛能够承受的价格 * @param a int整型vector 1-9这九个数字的价格数组 * @return string字符串 ...
2021-08-15
2
655
题解 | #牛牛摆木棒#
class Solution {public: /** * * @param n int整型 木棒的个数 * @param k long长整型 第k个排列 * @return int整型vector */ vector<int> sti...
2021-08-15
1
480
题解 | #椭圆曲线#
/** struct Point { int x; int y; }; / class Solution { uint64_t Modp = 1000000007; uint32_t Inv(uint64_t num) { uint32_t result = 1,...
2021-08-15
2
535
题解 | #金字塔数组#
class Solution {public: /** * * @param n int整型 * @param num int整型vector * @return int整型 */ int getMaxLength(int n, vector<...
2021-08-15
3
558
题解 | #最省路径#
include<bits/stdc++.h> using namespace std;typedef long long ll;typedef double db;typedef vector<int> vii;typedef vector<ll> vll;typ...
2021-08-14
3
554
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页