码迷,mamicode.com
首页 >  
搜索关键字:its    ( 9997个结果
[LeetCode] Add Digits
Given a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is like:3 + ...
分类:其他好文   时间:2015-09-13 00:47:31    阅读次数:171
LeetCode -- Merge K Sorted Lists
Question:Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.Analysis:合并k个排好序的链表,返回最终一个总的排序列表。分析并描述他的复杂度。l...
分类:其他好文   时间:2015-09-12 21:38:37    阅读次数:197
【LeetCode】223. Rectangle Area
题目:Find the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right corner as sho...
分类:其他好文   时间:2015-09-12 18:58:45    阅读次数:159
stap 命令
DTrace, SystemTap has several front-end tools with different capabilities:* `stapio` is a consumer which runs module and prints information from its b...
分类:其他好文   时间:2015-09-12 18:55:08    阅读次数:322
Summary Ranges
Given a sorted integer array without duplicates, return the summary of its ranges.For example, given [0,1,2,4,5,7], return ["0->2","4->5","7"].Java代码如...
分类:其他好文   时间:2015-09-12 17:36:12    阅读次数:123
Remove Nth Node From End of List
Given a linked list, remove the nth node from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After ...
分类:其他好文   时间:2015-09-12 16:06:50    阅读次数:150
LeetCode -- Reverse Nodes in K-Group
Question:Given a linked list, reverse the nodes of a linked listkat a time and return its modified list.If the number of nodes is not a multiple ofkth...
分类:其他好文   时间:2015-09-12 14:45:02    阅读次数:147
LeetCode -- Swap Nodes in Pairs
Question:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Y...
分类:其他好文   时间:2015-09-12 12:10:20    阅读次数:217
Rectangle Area
Find the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right corner as shown ...
分类:其他好文   时间:2015-09-12 06:21:50    阅读次数:126
http.cof
## This is the main Apache HTTP server configuration file. It contains the# configuration directives that give the server its instructions.# See for.....
分类:Web程序   时间:2015-09-11 15:55:34    阅读次数:250
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!