51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Leetcode
leetcode 455. 分发饼干
描述:假设你是一位很棒的家长,想要给你的孩子们一些小饼干。但是,每个孩子最多只能给一块饼干。对每个孩子i,都有一个胃口值 gi,这是能让孩子们满足胃口的饼干的最小尺寸;并且每块饼干j,都有一个尺寸sj 。如果sj>=gi ,我们可以将这个饼干j分配给孩子i,这个孩子会得到满足。你的目...
代码星球
·
2020-08-31
leetcode
455.
分发
饼干
2.3在LeetCode中使用我们自定义的类
在上一节中我们使用的是java提供了的类,这一小节中我们就来学习一下如何在LeetCode中使用我们自定义的类。其实很简单,我们只需把我们编写的自定义类,拷贝到LeetCode提供的类中,形成类中类,这样LeetCode就好自动调用我们编写的类啦。 ...
代码星球
·
2020-08-31
LeetCode
使用
我们
自定义
LeetCode 90:Subsets II
Givenacollectionofintegersthatmightcontainduplicates, nums,returnallpossiblesubsets.Note:...
代码星球
·
2020-08-29
LeetCode
Subsets
II
[leetcode]Simplify Path
Givenanabsolutepathforafile(Unix-style),simplifyit.Forexample,path="/home/",=>"/home"path="/a/./b/../../c/",=>"/c"clicktoshowcornercases.CornerCases:Didyo...
代码星球
·
2020-08-29
leetcode
Simplify
Path
[leetcode]Path Sum--巧用递归
题目:Givenabinarytreeandasum,determineifthetreehasaroot-to-leafpathsuchthataddingupallthevaluesalongthepathequalsthegivensum.Forexample:Giventhebelowbinarytreeand...
代码星球
·
2020-08-28
leetcode
Path
Sum--
巧用
递归
leetcode第一刷_Combination Sum Combination Sum II
啊啊啊啊。好怀念这样的用递归保存路径然后打印出来的题目啊。好久没遇到了。分了两种,一种是能够反复使用数组中数字的,一种是每一个数字仅仅能用一次的。事实上没有多大差别,第一种每次进入递归的时候都要从头開始尝试。另外一种要找一个标记的数组,把已经用到过的排除掉,就像生成全排列时的做法一样。跟我一样用引用保存中间结果的话。要...
代码星球
·
2020-08-28
Combination
Sum
leetcode
第一
II
leetcode第一刷_Sudoku Solver
这道题简直是耻辱啊。竟然被吓得不敢做,最终開始写还犯下了各种低级错误,花了好久的时间。事实上假设想明确81*9事实上是非常小的规模的话,早就想到用回溯法了,这不是跟八皇后全然一样的嘛。每次填入的时候,验证一下合不合理,当中合不合理在上一个问题中已经讨论过了。对当前位置讨论更简单。所的头头是道。你会问“那你是错在哪呢?”...
代码星球
·
2020-08-28
leetcode
第一
Sudoku
Solver
【LeetCode-面试算法经典-Java实现】【010-Regular Expresssion Matching(正則表達式匹配)】
Implementregularexpressionmatchingwithsupportfor‘.’and‘*’.‘.’Matchesanysinglecharacter.‘*’Matcheszeroormoreoftheprecedingelement.Thematchingshouldcovertheenti...
代码星球
·
2020-08-28
LeetCode-
面试
算法
经典
-Java
【leetcode】 26. Remove Duplicates from Sorted Array
@requires_authorization@authorjohnsondu@create_time2015.7.2218:58@url[removedublicatesfromsortedarray](https://leetcode.com/problems/remove-duplicates-from-sort...
代码星球
·
2020-08-28
leetcode
Remove
Duplicates
from
Sorted
LeetCode:Merge k Sorted Lists
MergekSortedListsTotalAccepted: 82424 TotalSubmissions: 354076 Difficulty: HardMerge k sortedlinkedlistsandreturnitasonesorte...
代码星球
·
2020-08-26
LeetCode
Merge
Sorted
Lists
leetcode02-Add Two Numbers之beats98.68%Java版本号
我的leetcode之旅,该篇章主要完毕使用Java实现算法。这是第二篇AddTwoNumbers所有代码下载:Github链接:github链接,点击惊喜;写文章不易。欢迎大家採我的文章。以及给出实用的评论,当然大家也能够关注一下我的github。多谢。Youaregiventwolinkedlistsreprese...
代码星球
·
2020-08-26
leetcode02-Add
Two
Numbers
beats98.68%Java
本号
Leetcode[153]-Find Minimum in Rotated Sorted Array
Link:https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/Supposeasortedarrayisrotatedatsomepivotunknowntoyoubeforehand.(i.e.,0124567mightbecome45...
代码星球
·
2020-08-26
Leetcode
-Find
Minimum
in
Rotated
LeetCode Path Sum II
找出一棵二叉树全部的从根节点到某一叶子节点的路径,该路径上全部节点的和为一个特定值。注意点:无样例:输入:5/48//11134//7251输出:[[5,4,11,2],[5,8,4,5]]PathSum是推断是否有这样一条路径,如今要把全部的路径都求出来。那仅仅要在dfs时将符合要求的路径增加到结果集。注意增加结果集...
代码星球
·
2020-08-25
LeetCode
Path
Sum
II
leetcode 11 -- Container With Most Water
题目Givennnon-negativeintegersa1,a2,…,an,whereeachrepresentsapointatcoordinate(i,ai).nverticallinesaredrawnsuchthatthetwoendpointsoflineiisat(i,ai)and(i,0).Findtw...
代码星球
·
2020-08-25
leetcode
Container
With
Most
Water
leetCode解题报告5道题(七)
题目一:InterleavingStringGiven s1, s2, s3,findwhether s3 isformedbytheinterleavingof s1 and s2.Forexample,Given:s1 =&n...
代码星球
·
2020-08-25
leetCode
解题
报告
道题
首页
上一页
...
24
25
26
27
28
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他