码迷,mamicode.com
首页 >  
搜索关键字:largest    ( 1413个结果
0053. Maximum Subarray (E)
Maximum Subarray (E) 题目 Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and retur ...
分类:其他好文   时间:2020-07-03 09:14:00    阅读次数:76
1399. Count Largest Group
Given an integer n. Each number from 1 to n is grouped according to the sum of its digits. Return how many groups have the largest size. 对1-n的数分组,分组规则 ...
分类:其他好文   时间:2020-06-29 20:18:12    阅读次数:73
LeetCode 215. 数组中的第K个最大元素 | Python
215. 数组中的第K个最大元素 题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/kth-largest-element-in-an-array 题目 在未排序的数组中找到第 k 个最大的元素。请注意,你需要找的是数组排序后的第 k 个最大的元素, ...
分类:编程语言   时间:2020-06-29 19:59:13    阅读次数:66
LeetCode 179. Largest Number (最大数)
题目标签:Sort 题目给了一组 数字,让我们组成一个最大数返回。 从example 2 看出,排序不是按照一般的大小,而是按照搭配组合,比较大小后才得出结果。 3, 30 的结果是 330 大于 303, 所以 3 要排序在 30 之前。 建立一个cutom comparator来实现,具体看co ...
分类:其他好文   时间:2020-06-22 01:39:41    阅读次数:61
leetcode 368. Largest Divisible Subset
Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfies: Si % Sj = 0 or ...
分类:其他好文   时间:2020-06-21 22:53:58    阅读次数:60
ARTS-WEEK-002
需要抓紧时间的一周。 Algorithm: 215:Kth Largest Element in an Array (Medium) 这道题求第 k 大元素,类似于 top k,可以使用堆 heap,这里需要注意虽然逻辑上需要一个大小为 k 的小顶堆,但是实际上有个技巧是让它可以放下 k + 1 个 ...
分类:其他好文   时间:2020-06-06 12:45:10    阅读次数:51
Array Basics
Java Program to Find Largest Element of an array In this program, you'll learn to find the largest element in an array using a for loop in Java. Examp ...
分类:其他好文   时间:2020-06-03 00:32:38    阅读次数:55
The XOR Largest Pair (01Trie)
在给定的 N 个整数 A1,A2,…,AN 中选出两个进行异或运算,得到的结果最大是多少? Input 第一行一个整数 N。 第二行 N 个整数 Ai。 Output 一个整数表示答案。 Example 样例输入 5 2 9 5 7 0 样例输出 14 Hint 对于 100%100% 的数据,1≤ ...
分类:其他好文   时间:2020-06-02 13:26:34    阅读次数:62
84. Largest Rectangle in Histogram. 单调栈
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist ...
分类:其他好文   时间:2020-05-30 23:25:31    阅读次数:106
LeetCode 84. 柱状图中最大的矩形 | Python
84. 柱状图中最大的矩形 题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/largest-rectangle-in-histogram/ 题目 给定 n 个非负整数,用来表示柱状图中各个柱子的高度。每个柱子彼此相邻,且宽度为 1 。 求在该柱状图 ...
分类:编程语言   时间:2020-05-30 20:17:18    阅读次数:73
1413条   上一页 1 2 3 4 5 ... 142 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!