码迷,mamicode.com
首页 >  
搜索关键字:maximum    ( 4142个结果
CSS3--通过Animation实现简单的手指点击动画
效果图 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user ...
分类:Web程序   时间:2020-07-14 18:34:16    阅读次数:252
线程池的参数
这个东西都已经烂大街了啊,但是我还是想写一下。其实很简单,直接看源码就行。 打开ThreadPoolExecutor.java,搜索他的构造方法,一共看到4个。我们直接看参数最多的一个 /** * Creates a new {@code ThreadPoolExecutor} with the g ...
分类:编程语言   时间:2020-07-11 23:03:36    阅读次数:67
0662. Maximum Width of Binary Tree (M)
Maximum Width of Binary Tree (M) 题目 Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maxim ...
分类:其他好文   时间:2020-07-10 10:11:00    阅读次数:54
662. Maximum Width of Binary Tree
Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maximum width among all levels. The binar ...
分类:其他好文   时间:2020-07-10 10:07:44    阅读次数:60
[LeetCode] 662. Maximum Width of Binary Tree
Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maximum width among all levels. The binar ...
分类:其他好文   时间:2020-07-10 09:54:38    阅读次数:54
124. 二叉树中的最大路径和(Binary Tree Maximum Path Sum)
题目描述: 给定一个非空二叉树,返回其最大路径和。 本题中,路径被定义为一条从树中任意节点出发,达到任意节点的序列。该路径至少包含一个节点,且不一定经过根节点。 示例 1: 输入: [1,2,3] 1 / \ 2 3 输出: 6示例 2: 输入: [-10,9,20,null,null,15,7] ...
分类:其他好文   时间:2020-07-09 19:10:05    阅读次数:51
CF1365E Maximum Subsequence Value(鸽巢原理)
因为题目已知至少要k-2个 假设我们取了k个,使得答案最大 那么因为对于每个数来说至少k-2个数在这位是1 因此我们只要任意选三个数,都能保证在每一位上都有至少一个数为1 #include<bits/stdc++.h> using namespace std; typedef long long l ...
分类:其他好文   时间:2020-07-09 15:12:45    阅读次数:67
【刷题-LeetCode】164 Maximum Gap
Maximum Gap Given an unsorted array, find the maximum difference between the successive elements in its sorted form. Return 0 if the array contains le ...
分类:其他好文   时间:2020-07-08 15:25:35    阅读次数:52
Leetcode: 1449. Form Largest Integer With Digits That Add up to Target
Description Given an array of integers cost and an integer target. Return the maximum integer you can paint under the following rules: The cost of pai ...
分类:其他好文   时间:2020-07-04 16:59:34    阅读次数:73
485. Max Consecutive Ones
Given a binary array, find the maximum number of consecutive 1s in this array. Example 1: Input: [1,1,0,1,1,1] Output: 3 Explanation: The first two di ...
分类:其他好文   时间:2020-07-04 13:47:53    阅读次数:61
4142条   上一页 1 ... 5 6 7 8 9 ... 415 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!