码迷,mamicode.com
首页 >  
搜索关键字:problems    ( 6275个结果
leetcode-----96. 不同的二叉搜索树
链接:https://leetcode-cn.com/problems/unique-binary-search-trees/ 代码 class Solution { public: int numTrees(int n) { vector<int> f(n + 1); f[0] = 1; for ...
分类:其他好文   时间:2020-07-18 11:25:21    阅读次数:56
leetcode-----97. 交错字符串
链接:https://leetcode-cn.com/problems/interleaving-string/ 代码 class Solution { public: bool isInterleave(string s1, string s2, string s3) { int n = s1.s ...
分类:其他好文   时间:2020-07-18 11:21:07    阅读次数:43
剑指 Offer 59II - 队列的最大值
力扣链接:https://leetcode-cn.com/problems/dui-lie-de-zui-da-zhi-lcof/ 题目描述 请定义一个队列并实现函数 max_value 得到队列里的最大值,要求函数max_value、push_back 和 pop_front 的均摊时间复杂度都是 ...
分类:其他好文   时间:2020-07-18 00:40:15    阅读次数:67
20.07.15 LeetCode7. 整数反转
1 给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。 2 3 示例 1: 4 5 输入: 123 6 输出: 321 7 示例 2: 8 9 输入: -123 10 输出: -321 11 示例 3: 12 13 输入: 120 14 输出: 21 15 注意: 16 17 ...
分类:其他好文   时间:2020-07-17 22:26:21    阅读次数:74
279. Perfect Squares
package LeetCode_279 import java.util.* import kotlin.collections.HashSet /** * 279. Perfect Squares * https://leetcode.com/problems/perfect-squares/d ...
分类:其他好文   时间:2020-07-17 01:15:12    阅读次数:72
LeetCode 590 N叉树的后序遍历
题目链接:https://leetcode-cn.com/problems/n-ary-tree-postorder-traversal/ 方法一递归法:先访问子节点,然后访问根。LeetCode代码: /* // Definition for a Node. class Node { public ...
分类:其他好文   时间:2020-07-16 21:39:10    阅读次数:79
LeetCode 785. 判断二分图 | Python
785. 判断二分图 题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/is-graph-bipartite 题目 给定一个无向图 graph,当这个图为二分图时返回 true。 如果我们能将一个图的节点集合分割成两个独立的子集 A和 B,并使图中的 ...
分类:编程语言   时间:2020-07-16 21:03:51    阅读次数:60
【算法】【高精度】大数相关问题总结
常考 大数乘法 题目链接:https://leetcode-cn.com/problems/multiply-strings/ class Solution { public: string multiply(string num1, string num2) { string res(num1.s ...
分类:编程语言   时间:2020-07-16 12:20:14    阅读次数:64
pat 1104 Sum of Number Segments (20分) 测试点3需要long double
题目链接:https://pintia.cn/problem-sets/994805342720868352/problems/994805363914686464 模拟题,新改的测试数据需要long double型,如果测试点3无法通过,可以参考以下代码: #include<bits/stdc++ ...
分类:其他好文   时间:2020-07-16 12:08:19    阅读次数:60
leetcode-----90. 子集 II
链接:https://leetcode-cn.com/problems/subsets-ii/ 代码 class Solution { public: vector<vector<int>> ans; vector<int> path; vector<vector<int>> subsetsWith ...
分类:其他好文   时间:2020-07-16 00:27:10    阅读次数:75
6275条   上一页 1 ... 29 30 31 32 33 ... 628 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!