码迷,mamicode.com
首页 >  
搜索关键字:should be repaired    ( 4956个结果
【Leetcode】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...
分类:其他好文   时间:2014-10-02 14:48:03    阅读次数:261
Building OpenCASCADE on Debian
Abstract. When you are familiar with OpenCASCADE on Windows, you should try it on Linux operating system, because of Debian is also open source like O...
分类:其他好文   时间:2014-10-01 18:27:31    阅读次数:254
Swap Nodes in Pairs
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.Your algor...
分类:其他好文   时间:2014-10-01 13:46:11    阅读次数:190
Saving Key-Value Sets
If you have a relatively small collection of key-values that you'd like to save, you should use the SharedPreferences APIs. ASharedPreferences object points to a file containing key-value pairs an...
分类:其他好文   时间:2014-10-01 02:51:10    阅读次数:232
[Leetcode][JAVA] 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...
分类:编程语言   时间:2014-10-01 02:29:00    阅读次数:222
leetcode--two sum
Problem:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of th...
分类:其他好文   时间:2014-09-30 23:33:10    阅读次数:319
HTML Notes
Label tag and input in form Male //for and id should be same Female View Code
分类:Web程序   时间:2014-09-30 04:39:42    阅读次数:171
Two Sum
题目描述:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the t...
分类:其他好文   时间:2014-09-30 00:24:31    阅读次数:208
[LeetCode]Median of Two Sorted Arrays
here are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O...
分类:其他好文   时间:2014-09-30 00:05:21    阅读次数:274
LeetCode Swap Nodes in Pairs
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.Your algor...
分类:其他好文   时间:2014-09-29 23:36:31    阅读次数:258
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!