码迷,mamicode.com
首页 >  
搜索关键字:house robber ii    ( 7279个结果
面试题58 - II. 左旋转字符串
题目: 解答: 1 class Solution { 2 public: 3 int reverse_string(string& s, int start, int end) 4 { 5 for (int i = start; i <= (start + end) / 2; i++) 6 { 7 ...
分类:其他好文   时间:2020-05-09 21:44:58    阅读次数:67
面试题59 - II. 队列的最大值
题目: 解答: 1 class MaxQueue { 2 queue<int> q; 3 deque<int> d; 4 public: 5 MaxQueue() { 6 } 7 8 int max_value() 9 { 10 if (d.empty()) 11 return -1; 12 ret ...
分类:其他好文   时间:2020-05-09 21:39:21    阅读次数:57
面试题57 - II. 和为s的连续正数序列
题目: 解答: 1 class Solution { 2 public: 3 vector<vector<int>> findContinuousSequence(int target) 4 { 5 int i = 1; // 滑动窗口的左边界 6 int j = 1; // 滑动窗口的右边界 7 ...
分类:其他好文   时间:2020-05-09 21:30:07    阅读次数:59
面试题58 - II. 左旋转字符串
题目: 解答: 1 class Solution { 2 public: 3 string reverseLeftWords(string s, int n) 4 { 5 reversestr(s, 0, n); 6 reversestr(s, n, s.size()); 7 reversestr( ...
分类:其他好文   时间:2020-05-09 21:07:44    阅读次数:52
LeetCode 275. H-Index II
"题目" 现在变了,数列是拍好序的,题目要求对数效率,因为x只可能有一个那就二分咯 ...
分类:其他好文   时间:2020-05-09 17:08:50    阅读次数:39
面试题07-II 根据前序和后序遍历构造二叉树
题目: 解答: 1 /** 2 * Definition for a binary tree node. 3 * public class TreeNode { 4 * int val; 5 * TreeNode left; 6 * TreeNode right; 7 * TreeNode(int ...
分类:其他好文   时间:2020-05-09 13:03:43    阅读次数:59
【LeetCode 12. Integer to Roman】
描述: 罗马数字包含以下七种字符:I,V,X,L,C,D和M。 例如, 罗马数字 2 写做 II,即为两个并列的 1。12写做 ,即为 。 27 写做 , 即为 。 通常情况下,罗马数字中小的数字在大的数字的右边。但也存在特例,例如 4 不写做 ,而是 。数字 1 在数字 5 的左边,所表示的数等于 ...
分类:其他好文   时间:2020-05-08 22:34:03    阅读次数:71
119. 杨辉三角 II
https://leetcode-cn.com/problems/pascals-triangle-ii/solution/xiang-xi-tong-su-de-si-lu-fen-xi-duo-jie-fa-by--28/ 思路: 注意一下给出的用例,最上方节点算是第0行,所以说,第三行的这个3 ...
分类:其他好文   时间:2020-05-08 18:01:49    阅读次数:54
P3913 车的攻击
题目描述 N \times NN×N 的国际象棋棋盘上有KK 个车,第ii个车位于第R_iRi?行,第C_iCi? 列。求至少被一个车攻击的格子数量。 车可以攻击所有同一行或者同一列的地方。 输入格式 第1 行,2 个整数N,KN,K。 接下来K 行,每行2 个整数R_i,C_iRi?,Ci?。 输 ...
分类:其他好文   时间:2020-05-08 00:25:03    阅读次数:84
【剑指offer】【树】55-II.平衡二叉树
题目链接:https://leetcode cn.com/problems/ping heng er cha shu lcof/ 递归 ...
分类:其他好文   时间:2020-05-06 22:05:33    阅读次数:79
7279条   上一页 1 ... 34 35 36 37 38 ... 728 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!