分层组织计算机存储系统由高层到低层分别名之寄存器堆、高速缓存(cache)、主存(main memory)和外存(secondary memory)。那么为什么记忆系统要层次化呢?如果答案是效率,那么提效的原理又是什么呢?如果原理是传说中的局部性原理(principle of locality),那...
分类:
其他好文 时间:
2014-11-23 17:19:37
阅读次数:
228
安装前须知:内存(RAM)的最小要求是 1GB,建议 2GB 及以上。虚拟内存 swap 建议:内存为 1GB~2GB 时建议swap大小为内存大小的 1.5 倍;内存为 2GB~16GB 时建议swap大小为内存的大小;内存超过 16GB 时swap保持16GB。要求临时文件目录,如 /tmp 的...
分类:
数据库 时间:
2014-11-23 17:18:26
阅读次数:
229
package android.sqlite;import android.content.Context;import android.database.sqlite.SQLiteDatabase;import android.database.sqlite.SQLiteOpenHelper;im...
分类:
数据库 时间:
2014-11-23 17:17:26
阅读次数:
209
1.java开发最基本的工具jdk(是一个软件,需要安装)在网上下载jdk安装包,注意在jdk安装过程中还会弹出一个jre安装,这个和jdk不能安装在同一个目录下面,否则在用命令行窗口进行代码编译时会报错 找不到或无法加载主类 com.sun.tools.javac.Main2初学者可以用notep...
分类:
编程语言 时间:
2014-11-23 17:17:54
阅读次数:
236
3143: [Hnoi2013]游走Time Limit:10 SecMemory Limit:128 MBSubmit:1026Solved:448[Submit][Status]Description一个无向连通图,顶点从1编号到N,边从1编号到M。小Z在该图上进行随机游走,初始时小Z在1号顶点...
分类:
其他好文 时间:
2014-11-23 17:17:33
阅读次数:
249
given an integer ,find 最小长度minlen 的expression of integer, minlen 定义为多少个完全平方数相加例如 14 = 1 + 4 + 9, minlen = 3int MinExpressionInteger(int i){ int k =...
分类:
其他好文 时间:
2014-11-23 17:15:54
阅读次数:
189
单臂路由三层交换机提供vlan间的通信之菜鸟之降龙详解要点:图示PC:左到右依次设置IP172.16.10.1,20.1,30.1,40,1,50,1/24网关10.254,20.25430,25440,25450.254目的:全网ping通2层交换,下行做vlan,把接口划分vlan内,上行接口做...
分类:
其他好文 时间:
2014-11-23 17:16:44
阅读次数:
275
Abstract. OpenCASCADE linear extrusion surface is a generalized cylinder. Such a surface is obtained by sweeping a curve (called the “extruded curve” ...
分类:
其他好文 时间:
2014-11-23 17:18:29
阅读次数:
414
+/ \1 */ \5 6这样的。要返回1+(5*6)struct TreeNode{ TreeNode * left, *right; string val; TreeNode(string i) :val(i), left(NULL), right(NULL){}}; bool...
分类:
其他好文 时间:
2014-11-23 17:17:23
阅读次数:
156
AngularJS 最佳实践转载:http://www.lovelucy.info/angularjs-best-practices.html
分类:
Web程序 时间:
2014-11-23 17:15:12
阅读次数:
140
void * Memcpy(void * src, void * des, int len){ char * pSrc, *pDes; if (NULL == des || NULL == src) return NULL; if (src (char*)des) ...
分类:
其他好文 时间:
2014-11-23 17:17:30
阅读次数:
146
经典问题:二维偏序。给定平面中的n个点,求每个点左下方的点的个数。因为 所有点已经以y为第一关键字,x为第二关键字排好序,所以我们按读入顺序处理,仅仅需要计算x坐标小于树状数组。 1 #include 2 #include 3 #include 4 using namespace std; 5 st...
分类:
编程语言 时间:
2014-11-23 17:16:08
阅读次数:
244
void GetAllString(int start, string & str, vector & res) { if (start == str.size()) { res.push_back(str); } else { ...
分类:
其他好文 时间:
2014-11-23 17:16:19
阅读次数:
189
I want to create a URL shortener service where you can write a long URL into an input field and the service shortens the URL to “http://www.example.or...
分类:
Web程序 时间:
2014-11-23 17:15:19
阅读次数:
599
struct LiveMgr{private: int m_nCount; /// m_vecChannels; /// m_spTimer; /// m...
分类:
其他好文 时间:
2014-11-23 17:14:19
阅读次数:
216
1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 class Node { 9 public: 10 int row,col; 11 int value; ...
分类:
其他好文 时间:
2014-11-23 17:16:37
阅读次数:
409
本文转自:http://www.ibm.com/developerworks/cn/java/j-lo-visualvm/index.htmlVisualVM 是一款免费的\集成了多个 JDK 命令行工具的可视化工具,它能为您提供强大的分析能力,对 Java 应用程序做性能分析和调优。这些功能包括生...
分类:
其他好文 时间:
2014-11-23 17:14:25
阅读次数:
280