E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
given
Generate Parentheses
Given
n pairsofparentheses,writeafunctiontogenerateallcombinationsofwell-formedparentheses.Forexample
walkwalkwalk
·
2016-01-10 22:00
Generate Parentheses
Given
n pairsofparentheses,writeafunctiontogenerateallcombinationsofwell-formedparentheses.Forexample
walkwalkwalk
·
2016-01-10 22:00
[LeetCode-119] Pascal's Triangle II(帕斯卡三角形第K行数据)
Givenanindex k,returnthe kth rowofthePascal'striangle.Forexample,
given
k =3,Return [1,3,3,1].Note:Couldyouoptimizeyouralgorithmtouseonly
xy010902100449
·
2016-01-10 21:00
LeetCode
[LeetCode-118] Pascal's Triangle(帕斯卡三角形)
Given
numRows,generatethefirst numRows ofPascal'striangle.Forexample,
given
numRows =5,Return[ [1], [1,1
xy010902100449
·
2016-01-10 21:00
leetcode笔记:Product of Array Except Self
i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,
given
liyuefeilong
·
2016-01-10 19:00
LeetCode
Algorithm
C++
算法
array
LeetCode:Pascal's Triangle II
TotalSubmissions: 202421 Difficulty: EasyGivenanindex k,returnthe kth rowofthePascal'striangle.Forexample,
given
itismelzp
·
2016-01-10 18:00
LeetCode
II
Pascals
Triangle
LeetCode:Pascal's Triangle
TotalSubmissions: 217681 Difficulty: EasyGiven numRows,generatethefirst numRows ofPascal'striangle.Forexample,
given
itismelzp
·
2016-01-10 17:00
LeetCode
Pascals
Triangle
24. Swap Nodes in Pairs leetcode Python 2016 new Season
Givenalinkedlist,swapeverytwoadjacentnodesandreturnitshead.Forexample,
Given
1->2->3->4,youshouldreturnthelistas
hyperbolechi
·
2016-01-10 12:00
22. Generate Parentheses leetcode Python 2016 new Season
Given
n pairsofparentheses,writeafunctiontogenerateallcombinationsofwell-formedparentheses.Forexample
hyperbolechi
·
2016-01-08 13:00
[LeetCode-86] Partition List (链表数据分区)
comebeforenodesgreaterthanorequalto x.Youshouldpreservetheoriginalrelativeorderofthenodesineachofthetwopartitions.Forexample,
Given
xy010902100449
·
2016-01-08 10:00
LeetCode
数据
链表
数据分区
[leetcode] 92. Reverse Linked List II 解题报告
problems/reverse-linked-list-ii/Reversealinkedlistfromposition m to n.Doitin-placeandinone-pass.Forexample:
Given
qq508618087
·
2016-01-08 09:00
LeetCode
链表
[leetcode] 143. Reorder List 解题报告
,reorderitto: L0→Ln→L1→Ln-1→L2→Ln-2→…Youmustdothisin-placewithoutalteringthenodes'values.Forexample,
Given
qq508618087
·
2016-01-08 08:00
LeetCode
链表
[leetcode] 61. Rotate List 解题报告
problems/rotate-list/Givenalist,rotatethelisttotherightby k places,where k isnon-negative.Forexample:
Given
qq508618087
·
2016-01-08 06:00
LeetCode
链表
【LEETCODE】300-Longest Increasing Subsequence [Python]
Givenanunsortedarrayofintegers,findthelengthoflongestincreasingsubsequence.Forexample,
Given
[10,9,2,5,3,7,101,18
Alice熹爱学习
·
2016-01-07 20:24
LEETCODE
【LEETCODE】300-Longest Increasing Subsequence [Python]
Givenanunsortedarrayofintegers,findthelengthoflongestincreasingsubsequence.Forexample,
Given
[10,9,2,5,3,7,101,18
aliceyangxi1987
·
2016-01-07 20:00
LeetCode
python
(数组)leetcode 283:Move Zeroes
writeafunctiontomoveall 0'stotheendofitwhilemaintainingtherelativeorderofthenon-zeroelements.Forexample,
given
Nitpicking
·
2016-01-07 16:00
LeetCode
C++
csdn
move
zeroes
[leetcode] 24. Swap Nodes in Pairs 解题报告
/problems/swap-nodes-in-pairs/Givenalinkedlist,swapeverytwoadjacentnodesandreturnitshead.Forexample,
Given
qq508618087
·
2016-01-07 16:00
LeetCode
链表
LeetCode:Generate Parentheses
MediumGiven n pairsofparentheses,writeafunctiontogenerateallcombinationsofwell-formedparentheses.Forexample,
given
itismelzp
·
2016-01-07 15:00
LeetCode
generate
Parentheses
[leetcode] 82. Remove Duplicates from Sorted List II 解题报告
Givenasortedlinkedlist,deleteallnodesthathaveduplicatenumbers,leavingonly distinct numbersfromtheoriginallist.Forexample,
Given
qq508618087
·
2016-01-07 15:00
LeetCode
链表
Flatten Binary Tree to Linked List
problems/flatten-binary-tree-to-linked-list/题目:Givenabinarytree,flattenittoalinkedlistin-place.Forexample,
Given
1
一切不期而至
·
2016-01-07 11:00
First Missing Positive
first-missing-positive/题目:Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,
Given
一切不期而至
·
2016-01-07 11:00
19. Remove Nth Node From End of List leetcode Python 2016 new Season
Note:
Given
n
hyperbolechi
·
2016-01-07 10:00
(数组)leetcode 119:Pascal's Triangle II
题目:Givenanindex k,returnthe kth rowofthePascal'striangle.Forexample,
given
k =3,Return [1,3,3,1].Note:
Nitpicking
·
2016-01-06 16:00
LeetCode
C++
csdn
II
Triangle
Pascals
(数组)leetcode 118:Pascal's Triangle
题目:
Given
numRows,generatethefirst numRows ofPascal'striangle.Forexample,
given
numRows =5,Return[ [1],
Nitpicking
·
2016-01-05 23:00
LeetCode
C++
csdn
Pascals
Triangle
(数组)leetcode 228: Summary Ranges
题目:Givenasortedintegerarraywithoutduplicates,returnthesummaryofitsranges.Forexample,
given
[0,1,2,4,5,7
Nitpicking
·
2016-01-05 21:00
LeetCode
C++
面试题
【LEETCODE】24-Swap Nodes in Pairs
Givenalinkedlist,swapeverytwoadjacentnodesandreturnitshead.Forexample,
Given
1->2->3->4,youshouldreturnthelistas2
aliceyangxi1987
·
2016-01-05 16:00
LeetCode
python
LeetCode:Unique Binary Search Trees
Forexample,
Given
n =3,thereareato
itismelzp
·
2016-01-05 16:00
LeetCode
unique
search
binary
11. Container With Most Water leetcode Python 2016 new Season
Given
n non-negativeintegers a1, a2,..., an,whereeachrepresentsapointatcoordinate(i, ai). n verticallinesaredrawnsuchthatthetwoendpointsofline
hyperbolechi
·
2016-01-05 11:00
LeetCode 41:First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,
Given
[1,2,0] return 3,and
geekmanong
·
2016-01-04 10:00
[leetcode] 11. Container With Most Water 解题报告
题目链接:https://leetcode.com/problems/container-with-most-water/
Given
n non-negativeintegers a1, a2,...,
qq508618087
·
2016-01-03 17:00
LeetCode
算法
array
[leetcode] 268. Missing Number 解题报告
Givenanarraycontaining n distinctnumberstakenfrom 0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,
Given
qq508618087
·
2016-01-03 10:00
LeetCode
Math
算法
bit
manipulation
LeetCode 95:Unique Binary Search Trees II
Given
n,generateallstructurallyunique BST's (binarysearchtrees)thatstorevalues1...n.Forexample,
Given
geekmanong
·
2016-01-02 16:00
[leetcode] 59. Spiral Matrix II 解题报告
spiral-matrix-ii/Givenaninteger n,generateasquarematrixfilledwithelementsfrom1to n2 inspiralorder.Forexample,
Given
qq508618087
·
2016-01-02 11:00
LeetCode
算法
array
LeetCode 96:Unique Binary Search Trees
Given
n,howmanystructurallyunique BST's (binarysearchtrees)thatstorevalues1...n?
geekmanong
·
2015-12-31 16:00
[LeetCode][JavaScript]Wiggle Sort II
WiggleSortIIGivenanunsortedarray nums,reorderitsuchthat nums[0]nums[2]
Given nums
Liok_Unbelievable
·
2015-12-31 14:00
Swap Nodes in Pairs
SwapNodesinPairsDifficulty:MediumGivenalinkedlist,swapeverytwoadjacentnodesandreturnitshead.Forexample,
Given
1
carlblack
·
2015-12-30 00:00
链表
leetcode
算法
c++
【LEETCODE】238-Product of Array Except Self
i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,
given
aliceyangxi1987
·
2015-12-29 19:00
LeetCode
python
[LeetCode]042-Trapping Rain Water
Givennnon-negativeintegersrepresentinganelevationmapwherethewidthofeachbaris1,computehowmuchwateritisabletotrapafterraining.Forexample,
Given
htx931005
·
2015-12-29 19:00
LeetCode
[LeetCode]041-First Missing Positive Integer
题目:Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,
Given
[1,2,0]return3,and[
htx931005
·
2015-12-29 16:00
LeetCode
leetcode dynamic programming
LongestIncreasingSubsequenceQuestionGivenanunsortedarrayofintegers,findthelengthoflongestincreasingsubsequence.Forexample,
Given
StubbornAnt
·
2015-12-29 16:00
LeetCode
动态规划
LeetCode(131)Palindrome Partitioning
suchthateverysubstringofthepartitionisapalindrome.Returnallpossiblepalindromepartitioningof s.Forexample,
given
fly_yr
·
2015-12-28 13:00
LeetCode
String
258. Add Digits
EasyGivenanon-negativeinteger num,repeatedlyaddallitsdigitsuntiltheresulthasonlyonedigit.Forexample:
Given
EbowTang
·
2015-12-28 10:00
LeetCode
数据结构
算法
面试
ACM
Reorder List
,reorderitto: L0→Ln→L1→Ln-1→L2→Ln-2→…Youmustdothisin-placewithoutalteringthenodes'values.Forexample,
Given
amazingzoe
·
2015-12-28 00:00
《leetCode》:Restore IP Addresses
Forexample:
Given
"25525511135", return["255.255.11.135","255.255.111.35"].
u010412719
·
2015-12-27 18:00
LeetCode
String
ipaddress
[leetcode] 83. Remove Duplicates from Sorted List 解题报告
remove-duplicates-from-sorted-list/Givenasortedlinkedlist,deleteallduplicatessuchthateachelementappearonly once.Forexample,
Given
qq508618087
·
2015-12-27 16:00
LeetCode
算法
list
single
[leetcode] 258. Add Digits 解题报告
add-digits/Givenanon-negativeinteger num,repeatedlyaddallitsdigitsuntiltheresulthasonlyonedigit.Forexample:
Given
qq508618087
·
2015-12-27 15:00
Math
LeetCode
算法
[leetcode] 228. Summary Ranges 解题报告
problems/summary-ranges/Givenasortedintegerarraywithoutduplicates,returnthesummaryofitsranges.Forexample,
given
qq508618087
·
2015-12-27 13:00
LeetCode
算法
array
leetcode笔记:Partition List
partitionitsuchthatallnodeslessthanxcomebeforenodesgreaterthanorequaltox.Youshouldpreservetheoriginalrelativeorderofthenodesineachofthetwopartitions.Forexample,
Given
1
liyuefeilong
·
2015-12-27 01:00
LeetCode
C++
算法
list
链表
Add Digits
Givenanon-negativeinteger num,repeatedlyaddallitsdigitsuntiltheresulthasonlyonedigit.Forexample:
Given
finalboss1987
·
2015-12-26 21:00
[LeetCode]Interleaving String
Given
s1, s2, s3,findwhether s3 isformedbytheinterleavingof s1 and s2.Forexample,
Given
:s1 = "aabcc",s2
CiaoLiang
·
2015-12-26 14:00
上一页
51
52
53
54
55
56
57
58
下一页
按字母分类:
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
其他