码迷,mamicode.com
首页 >  
搜索关键字:leedcode    ( 225个结果
[leedcode 146] LRU Cache
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset.get(key)- Get the valu...
分类:系统相关   时间:2015-07-28 06:39:22    阅读次数:168
[leedcode 145] Binary Tree Postorder Traversal
Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1]./*...
分类:其他好文   时间:2015-07-27 14:33:39    阅读次数:89
[leedcode 144] Binary Tree Preorder Traversal
Given a binary tree, return thepreordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,2,3]./**...
分类:其他好文   时间:2015-07-27 00:10:24    阅读次数:195
[leedcode 142] Linked List Cycle II
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?因为f...
分类:其他好文   时间:2015-07-26 23:57:57    阅读次数:213
[leedcode 141] Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?/** * Definition for singly-linked list. *...
分类:其他好文   时间:2015-07-26 22:34:52    阅读次数:163
[leedcode 140] Word Break II
Given a stringsand a dictionary of wordsdict, add spaces insto construct a sentence where each word is a valid dictionary word.Return all such possibl...
分类:其他好文   时间:2015-07-26 22:12:22    阅读次数:100
[leedcode 139] Word Break
Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For exampl...
分类:其他好文   时间:2015-07-26 20:47:19    阅读次数:107
[leedcode 138] Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:其他好文   时间:2015-07-26 20:37:53    阅读次数:106
[leedcode 137] Single Number II
Given an array of integers, every element appearsthreetimes except for one. Find that single one.public class Solution { public int singleNumber(in...
分类:其他好文   时间:2015-07-26 20:30:48    阅读次数:146
[leedcode 136] Single Number
Given an array of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runtime complexity...
分类:其他好文   时间:2015-07-26 19:03:17    阅读次数:103
225条   上一页 1 ... 9 10 11 12 13 ... 23 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!