typedef enum _POOL_TYPE { NonPagedPool,
NonPagedPoolExecute= NonPagedPool, PagedPool, NonPagedPoolMustSucceed=
NonPagedPool + 2, DontUseThisType...
分类:
其他好文 时间:
2014-05-19 19:47:09
阅读次数:
282
PVOID p = ExAllocatePool(Pool_Type, Size);PVOID
p = ExAllocatePoolWithTag(Pool_Type, Size, Tag);
调用ExAllocatePool是从内核模式堆中分配内存的标准方式。另一个函数ExAllocatePoo....
分类:
其他好文 时间:
2014-05-19 19:39:16
阅读次数:
372
InnoDB存储引擎是基于磁盘存储的,并将其中的记录按照页的方式进行管理。在数据库系统中,由于CPU速度和磁盘速度之前的鸿沟,通常使用缓冲池技术来提高数据库的整体性能。1.
Innodb_buffer_pool缓冲池(buffer pool)简单来说就是一块内存区域。缓冲池中缓存的数据页类型有:索引...
分类:
数据库 时间:
2014-05-19 15:01:07
阅读次数:
438
一个基本的该类型字符串例子:@"This is a constant character
string object";在后台显示它:NSLog (@"%@", @"This is a constant character string
object");得到其长度:int len = [@"Hel...
分类:
其他好文 时间:
2014-05-19 13:59:33
阅读次数:
234
【题目】
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
For example,
Given input array A ...
分类:
其他好文 时间:
2014-05-18 18:25:19
阅读次数:
272
【题目】
Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant space. You may not modify the values in the list, only nodes it...
分类:
其他好文 时间:
2014-05-18 08:37:57
阅读次数:
370
题目: Sort a linked list inO(nlogn) time using
constant space complexity.解题思路: 复杂度为O(n* logn)
的排序算法有:快速排序、堆排序、归并排序。对于链表这种数据结构,使用归并排序比较靠谱。递归代码如下:代码: /...
分类:
其他好文 时间:
2014-05-16 05:49:04
阅读次数:
266
1.消耗CPUSELECT a.CPU_TIME, --CPU时间 百万分之一(微秒)
a.OPTIMIZER_MODE,--优化方式 a.EXECUTIONS,--执行次数 a.DISK_READS,--读盘次数
a.SHARABLE_MEM,--占用shared pool...
分类:
数据库 时间:
2014-05-16 04:07:52
阅读次数:
419
1.String类概念(1)String是final的,不可被继承。public final
class String。String是的本质是字符数组char[], 并且其值不可改变。private final char
value[];(2)Java运行时会维护一个String Pool(Stri...
分类:
其他好文 时间:
2014-05-16 03:32:32
阅读次数:
301
在我们使用CentOS系统的时候,也许时区经常会出现问题,有时候改完之后还是会出错,下面我们就来学习一种方法来改变这个状况。如果没有安装,而你使用的是
CentOS系统 那使用命令 yum install ntp然后:ntpdate us.pool.ntp.org 。因为CentOS系统是用rhas...
分类:
其他好文 时间:
2014-05-14 07:05:33
阅读次数:
258