码迷,mamicode.com
首页 >  
搜索关键字:largest    ( 1413个结果
最大BST子树-树
https://leetcode-cn.com/problems/largest-bst-subtree/ public int largestBSTSubtree(TreeNode root) { return (root == null) ? 0 : getInfo(root).size; } ...
分类:其他好文   时间:2021-06-29 15:58:52    阅读次数:0
[LeetCode] 215. Kth Largest Element in an Array_Medium tag: Array, Heap
Given an integer array nums and an integer k, return the kth largest element in the array. Note that it is the kth largest element in the sorted order ...
分类:其他好文   时间:2021-06-28 20:35:29    阅读次数:0
数组中的第K个最大元素
https://leetcode-cn.com/problems/kth-largest-element-in-an-array/ 215. 数组中的第K个最大元素 在未排序的数组中找到第 k 个最大的元素。请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。 示例 1 ...
分类:编程语言   时间:2021-06-23 16:38:41    阅读次数:0
[LeetCode] 1877. Minimize Maximum Pair Sum in Array
The pair sum of a pair (a,b) is equal to a + b. The maximum pair sum is the largest pair sum in a list of pairs. For example, if we have pairs (1,5),  ...
分类:其他好文   时间:2021-06-13 09:41:48    阅读次数:0
[AWS DA Guru] S3
S3 File Size Single S3 Object can range in size from 0 bytes to 5TB Largest object that can be uploaded in a single PUT request is 5GB For Objects lar ...
分类:其他好文   时间:2021-05-03 12:56:01    阅读次数:0
字符串中第二大的数
此博客链接: 字符串中第二大的数 题目链接:https://leetcode-cn.com/problems/second-largest-digit-in-a-string/ 题目 给你一个混合字符串 s ,请你返回 s 中 第二大 的数字,如果不存在第二大的数字,请你返回 -1 。 混合字符串 ...
分类:其他好文   时间:2021-04-14 12:31:36    阅读次数:0
0084. Largest Rectangle in Histogram (H)
Largest Rectangle in Histogram (H) 题目 Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the ...
分类:其他好文   时间:2021-01-05 10:40:12    阅读次数:0
215. 数组中的第K个最大元素
题目链接:https://leetcode-cn.com/problems/kth-largest-element-in-an-array/ 1 先快速排序,再取第 K个 class Solution { public int findKthLargest(int[] nums, int k) { ...
分类:编程语言   时间:2020-12-19 12:57:18    阅读次数:1
ProjectEuler
按照题号排序 1.Multiples of 3 and 5 题意:求 $1000$ 以内的,是 $3$ 或 $5$ 倍数的数的和 直接模拟 2.Even Fibonacci numbers 题意:求 $4\times 10 ^ 6$ 内的,是偶数的斐波那契数之和 直接模拟 3.Largest pri ...
分类:其他好文   时间:2020-11-24 12:11:58    阅读次数:5
PAT(Advanced Level)A1094. The Largest Generation
题意 树的层序遍历的问题,找到结点数最多的一层,输出结点树和对应层号 思路 看到是树层序遍历就立马反应过来用BFS做,可以说是裸模版的题目了 层序遍历在每次扩展状态的时候都是取一层的结点数进行扩展,此时就可以直接比较来找题目要求的解了 代码 #include <algorithm> #include ...
分类:其他好文   时间:2020-10-05 21:55:34    阅读次数:27
1413条   1 2 3 4 ... 142 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!