诗云panther
诗云panther
全部文章
题解
生活 篮球(1)
归档
标签
去牛客网
登录
/
注册
诗云panther的博客
全部文章
/ 题解
(共80篇)
题解 | #N皇后问题#
import java.util.;public class Solution { /* * * @param n int整型 the n * @return int整型 */ int ans=0; public int Nqueen (int n)...
2021-08-13
3
636
题解 | #中奖的概率#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; &...
2021-08-13
3
540
题解 | #中奖的概率#
const int mod =1000000007;const int M =2e5+7;typedef long long ll;ll qpow(ll a,ll b){ ll ans=1; while(b){ if(b&1)ans=ansa%mod; ...
2021-08-12
1
635
题解 | #牛牛组数#
import java.util.;import java.math.BigInteger;public class Solution { /* * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 返回最大和的字符串 * @param x ...
2021-08-12
1
512
题解 | #LFU缓存结构设计#
class Solution {private: typedef list<vector<int> > vecList; //定义元素为向量的双向链表,向量里为[频次,键,值] unordered_map<int, vecList> freq_map;...
2021-08-12
1
502
题解 | #二叉树的中序遍历#
//C++:///** struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} }; /...
2021-08-12
1
522
题解 | #在两个长度相等的排序数组中找到上中位数#
class Solution {public: /** * find median in two sorted array * @param arr1 int整型vector the array1 * @param arr2 int整型vector the array2...
2021-08-11
4
510
题解 | #牛客的课程订单分析(三)#
select o.id, o.user_id, o.product_name, o.status, o.client_id, o.datefrom order_info ojoin(select id, user_id, product_name, status, client_id, datefr...
2021-08-11
3
508
题解 | #扑克牌顺子#
class Solution {public: bool IsContinuous( vector<int> numbers ) { if (numbers.empty()) return false; set<int> st; ...
2021-08-11
2
414
题解 | #能被多个质数整除的第K长子段#
class Solution {public: static bool comp(pair<int, int>& a, pair<int, int>& b){ //重载比较,按区间大小排序 return a.second - a.first...
2021-08-11
2
516
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页