Content0.序1.内存池结构1.1 ngx_pool_t结构1.2其他相关结构1.3 ngx_pool_t的逻辑结构2.内存池操作2.1创建内存池2.2销毁内存池2.3重置内存池2.4分配内存2.4.1 ngx_palloc()函数分析2.4.2 ngx_palloc_block()函数分析2...
分类:
其他好文 时间:
2015-03-30 22:28:36
阅读次数:
240
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top() -- Get...
分类:
其他好文 时间:
2015-03-30 18:55:43
阅读次数:
104
1、tomcat中sever配置
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" initialSize="10"
jdbcInterceptors="org.apache.tomcat.jdbc.pool.interceptor.ConnectionState;
org.apache.tomcat.jdbc.po...
分类:
数据库 时间:
2015-03-30 11:29:43
阅读次数:
147
1422. Table Tennis
Constraints
Time Limit: 1 secs, Memory Limit: 32 MB
Description
There is a rectangular pool table ABCD with side lengths m and n, where m and n are integers with m...
分类:
其他好文 时间:
2015-03-30 09:20:57
阅读次数:
179
product(*iterables[,repeat]): 源代码: def?product(*args,**kwds):
????pools=map(tuple,args)*kwds.get("repeat",1)
????result=[[]]
????for?pool?in?pools:
????????result=[x+[y]...
分类:
编程语言 时间:
2015-03-29 23:49:12
阅读次数:
546
Java中把存储区分为6类。分别为寄存器(register)、栈(stack)、堆(heap)、静态存储区(static storage)、常量存储区(constant storage)以及非随机存取存储区(Non-RAM)。1. 寄存器(register).寄存器与其他的存储区不同,它位于CPU中...
分类:
编程语言 时间:
2015-03-29 19:28:26
阅读次数:
188
Given an unsorted integer array, find the first missing positive integer.For example,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your algorithm should run in O(n) time and uses constant space.思路分析:...
分类:
其他好文 时间:
2015-03-29 13:39:00
阅读次数:
106
https://leetcode.com/problems/sort-list/Sort a linked list inO(nlogn) time using constant space complexity.解题思路:常见的O(nlogn)算法,快速排序、归并排序,堆排序。大概讲讲优缺点,在数...
分类:
其他好文 时间:
2015-03-28 21:32:10
阅读次数:
114
相关概念BUCKET :每个bucket上挂有一个 chunk list。同一个BUCKET中的chunk在物理地址上是不一定相邻的FREE LISTS:按bucket划分,共有255个,bucket 0---bucket 254RESERVED FREE LISTS:在SQL语句所需CHUNK大于...
分类:
其他好文 时间:
2015-03-21 22:39:16
阅读次数:
229
基本配置 你需要经常察看以下3个配置项。不然,可能很快就会出问题。 innodb_buffer_pool_size:这是你安装完InnoDB后第一个应该设置的选项。缓冲池是数据和索引缓存的地方:这个值越大越好,这能保证你在大多数的...
分类:
数据库 时间:
2015-03-20 20:34:17
阅读次数:
227