诗云panther
诗云panther
全部文章
题解
生活 篮球(1)
归档
标签
去牛客网
登录
/
注册
诗云panther的博客
全部文章
/ 题解
(共80篇)
题解 | #牛牛算数#
class Solution {public: /** * * @param arr int整型vector * @return int整型 */ int Answerofjudge(vector<int>& arr) { ...
2021-08-11
2
565
题解 | #走网格#
class Solution { const int mod = 1e9+7;public: /** * * @param n int整型 * @param m int整型 * @param x0 int整型 * @param y0 int整型 ...
2021-08-11
2
532
题解 | #环形链表的约瑟夫问题#
class Solution {public: /** * * @param n int整型 * @param m int整型 * @return int整型 */ int ysf(int n, int m) { int last{0...
2021-08-11
2
381
题解 | #二叉树的最大路径和#
class Solution {public: /** * * @param root TreeNode类 * @return int整型 */ int maxPathSum(TreeNode *root) { // write code h...
2021-08-10
2
615
题解 | #查找描述信息中包含robot的电影对应的分类名称以及电影数目,而且还需要该分类对应电影数量>=5部#
select c.name, count(fc.film_id)from film f,category c,film_category fcwhere f.description like '%robot%'and f.film_id=fc.film_idand fc.category...
2021-08-10
4
422
题解 | #数组中只出现一次的两个数字#
class Solution {public: vector<int> FindNumsAppearOnce(vector<int>& array) { vector<int>ans; int ans1 = 0,ans2 ...
2021-08-10
2
505
题解 | #数字在升序数组中出现的次数#
class Solution {public: int GetNumberOfK(vector<int> data ,int k) { auto l = lower_bound(data.begin(), data.end(), k); auto r =...
2021-08-10
2
422
题解 | #括号序列#
class Solution {public: /** * * @param s string字符串 * @return bool布尔型 */ bool isValid(string s) { // write code here ...
2021-08-09
2
408
题解 | #最长公共子串#
class Solution {public: string LCS(string str1, string str2) { int dp[str1.size()]; //以str1[i]、str2[j]结尾的子序列长度,以下简称sub[i][j] int max ...
2021-08-08
3
518
题解 | #二分查找-II#
class Solution {public: int search(vector<int>& nums, int target) { return(helper(nums, target, 0, nums.size() - 1)); } int ...
2021-08-06
3
608
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页