1.physical machine: Centos 6.5 Xen Version: xen 4.3.0 Guest OS Version: Centos 6.52. After finishing the configuration file for Guest OS, we should us...
分类:
其他好文 时间:
2014-10-03 01:40:33
阅读次数:
452
Given a binary tree, flatten it to a linked list in-place.
For example,
Given
1
/ 2 5
/ \ 3 4 6
The flattened tree should look like:
1
...
分类:
其他好文 时间:
2014-10-02 15:12:43
阅读次数:
193
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
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
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
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
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
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
Label tag and input in form Male //for and id should be same Female View Code
分类:
Web程序 时间:
2014-09-30 04:39:42
阅读次数:
171
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