Problem Description:Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset.ge...
分类:
其他好文 时间:
2014-07-07 16:41:12
阅读次数:
237
http://sconsolidator.com/projects/sconsolidator/wiki/Getting_StartedAdd SCons support to an existing projectTo add SCons support to an existing C/C++ ...
分类:
系统相关 时间:
2014-07-07 15:25:54
阅读次数:
289
官方地址:http://developer.android.com/guide/practices/screens_support.html一、关于布局适配建议1、不要使用绝对布局2、尽量使用match_parent 而不是fill_parent 。3、能够使用权重的地方尽量使用权重(android...
分类:
移动开发 时间:
2014-07-03 11:28:23
阅读次数:
321
最近实现了这样的一个效果:滑动界面出现拖拽效果,可翻动3屏,也可点击按钮翻动页面。主要利用android.support.v4.view.ViewPager控件来实现。第一个界面:滑动屏幕:换到下一屏:布局文件:主界面 main.xml第一屏界面:page01.xml第二屏 ,第三屏与第一屏布局一样...
分类:
其他好文 时间:
2014-07-02 00:49:00
阅读次数:
415
HTML5在操作的过程中,很多朋友会遇到一个问题,那就是在播放本地文件的时候时常会有一些问题存在,使得HTML5才操作的过程中本地文件播放不流畅或者是不能够正常的播放。现在,我们就来看看HTML5如何播放本地文件。代码实例如下:Your browser can't support HTML5 Aud...
分类:
Web程序 时间:
2014-07-01 20:06:23
阅读次数:
194
如下介绍了data guard的基础知识,整理自网络: DataGurad通过冗余数据来提供数据保护,DataGurad通过日志同步机制保证冗余数据和主数据之前的同步,这种同步可以是实时,延时,同步,异步多种形式。DataGurad常用于异地容灾和小企业的高可用性方案,虽然可以在Standby机.....
分类:
其他好文 时间:
2014-07-01 19:46:21
阅读次数:
338
// Override to support conditional editing of the table view.- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath...
分类:
其他好文 时间:
2014-07-01 13:18:10
阅读次数:
526
First Missing Positive:Given an unsorted integer array, find the first missing positive integer.For example,Given [1,2,0] return 3,and [3,4,-1,1] retu...
分类:
其他好文 时间:
2014-07-01 13:13:59
阅读次数:
218
题目
There 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(log (m+n)).
方法
转换为寻找第k大的数。
...
分类:
其他好文 时间:
2014-06-30 06:05:58
阅读次数:
261
【题目】
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.
get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise return -1.
se...
分类:
其他好文 时间:
2014-06-29 22:45:26
阅读次数:
358