码迷,mamicode.com
首页 >  
搜索关键字:part solution    ( 14980个结果
每日一题力扣530 二叉搜索树的最小绝对查
给你一棵所有节点为非负值的二叉搜索树,请你计算树中任意两节点的差的绝对值的最小值。 class Solution: def getMinimumDifference(self, root: TreeNode) -> int: #初始化,最小值赋值为无穷大,last_value记录上一个节点的值 mi ...
分类:其他好文   时间:2021-04-15 12:22:03    阅读次数:0
每日一题力扣94 二叉树的中序遍历
给定一个二叉树的根节点 root ,返回它的 中序 遍历。 示例 1: 输入:root = [1,null,2,3] 输出:[1,3,2] class Solution: def inorderTraversal(self, root: TreeNode) -> List[int]: def in_ ...
分类:其他好文   时间:2021-04-15 12:16:15    阅读次数:0
字符串中第二大的数
此博客链接: 字符串中第二大的数 题目链接:https://leetcode-cn.com/problems/second-largest-digit-in-a-string/ 题目 给你一个混合字符串 s ,请你返回 s 中 第二大 的数字,如果不存在第二大的数字,请你返回 -1 。 混合字符串 ...
分类:其他好文   时间:2021-04-14 12:31:36    阅读次数:0
Mysql子查询
1、表的操作 (1)表的创建:create table 表名 (列名1 类型 约束, 列名2 类型 约束...) CREATE TABLE a_table ( a_id int(11) DEFAULT NULL, a_name varchar(10) DEFAULT NULL, a_part var ...
分类:数据库   时间:2021-04-14 11:57:18    阅读次数:0
leetcode_1-两数之和
#题目 #代码 #include <unordered_map> #include <vector> using namespace std; class Solution { public: vector<int> twoSum(vector<int> &nums, int target) { v ...
分类:其他好文   时间:2021-04-13 12:55:20    阅读次数:0
【LeetCode】1822. 数组元素积的符号
思路:遍历判断每个数的正负 class Solution { public: int arraySign(vector<int>& nums) { int ans = 1; for(auto &n : nums){ if(n == 0) return 0; ans *= (n > 0) ? 1 : ...
分类:编程语言   时间:2021-04-13 12:40:39    阅读次数:0
约瑟夫环问题
约瑟夫环 题目: 剑指 Offer 62. 圆圈中最后剩下的数字 5727. 找出游戏的获胜者 1、数学解法就是通过倒推,求出队伍长度为n时,(n=1)的下标会变成什么。 class Solution { public int lastRemaining(int n, int m) { int an ...
分类:其他好文   时间:2021-04-12 12:42:41    阅读次数:0
b_lc_最少侧跳次数(向前看dp)
给定一个长为n的数组A(n<5*10^5),A[i] (取值范围从 0 到 3)表示在点 i 处的 A[i] 跑道上有一个障碍。如果 A[i] == 0 ,那么点 i 处没有障碍。任何一个点的三条跑道中 最多有一个 障碍。求这只青蛙从点 0 处跑道 2 出发,并想到达点 n 处的 任一跑道 ,请你返 ...
分类:其他好文   时间:2021-04-12 12:36:30    阅读次数:0
Solve Error: Run 'hexo g', got 'Killed'
When you run hexo g on any web instances, like on AWS or Azure, you might get the following error: (node:3568) ExperimentalWarning: The fs.promises AP ...
分类:其他好文   时间:2021-04-12 12:28:51    阅读次数:0
[Fundamental of Power Electronics]-PART II-8. 变换器传递函数-8.1 Bode图回顾
8.0 序 工程设计过程主要包括以下几个过程: 1.定义规格与其他设计目标 2.提出一个电路。这是一个创造性的过程,需要利用工程师的实际见识和经验。 3.对电路进行建模。变换器的功率级建模方法已经在第7章给出。系统各元件和其他部分通常使用供应商提供的数据进行建模。 4.对电路进行面向设计的分析。这就 ...
分类:其他好文   时间:2021-04-12 12:24:23    阅读次数:0
14980条   上一页 1 ... 12 13 14 15 16 ... 1498 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!