上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页
摘要: 参数说明示例$remote_addr客户端地址211.28.65.253$remote_user客户端用户名称--$time_local访问时间和时区18/Jul/2012:17:00:01 +0800$request请求的URI和HTTP协议"GET /article-10000.html HTT... 阅读全文
posted @ 2015-11-25 15:55 hao.ma 阅读(455) 评论(0) 推荐(0) 编辑
摘要: http keepalive 减少tcp 连接 (三次握手的消耗)tcp keepalive 检测死链接的session 在tcp连接中, src_ip + src_port + dest_ip + dest_port generate a unique session id 阅读全文
posted @ 2015-11-25 12:28 hao.ma 阅读(118) 评论(0) 推荐(0) 编辑
摘要: # Definition for singly-linked list.# class ListNode(object):# def __init__(self, x):# self.val = x# self.next = Noneclass Solutio... 阅读全文
posted @ 2015-11-24 23:13 hao.ma 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 这个模块(build-in)实现了一个堆的数据结构,完美的解决了Top-K问题,以后解决Top-K问题的时候,直接把这个模块拿来用就可以了注意,默认的heap是一个小顶堆! heapq模块提供了如下几个函数:heapq.heappush(heap, item) 把item添加到heap中(heap是... 阅读全文
posted @ 2015-11-24 23:11 hao.ma 阅读(607) 评论(0) 推荐(0) 编辑
摘要: # 解题思路:列举出所有合法的括号匹配,使用dfs。如果左括号的数量大于右括号的数量的话,就不能产生合法的括号匹配class Solution(object): def generateParenthesis(self, n): """ :type n: int ... 阅读全文
posted @ 2015-11-24 22:48 hao.ma 阅读(165) 评论(0) 推荐(0) 编辑
摘要: curl -H "Content-Type: application/json" http://127.0.0.1:8000 -X POST -d 'xxxx'php$strParam = $GLOBALS['HTTP_RAW_POST_DATA']; 阅读全文
posted @ 2015-11-24 20:41 hao.ma 阅读(637) 评论(0) 推荐(0) 编辑
摘要: # Definition for singly-linked list.# class ListNode(object):# def __init__(self, x):# self.val = x# self.next = Noneclass Solutio... 阅读全文
posted @ 2015-11-22 07:18 hao.ma 阅读(154) 评论(0) 推荐(0) 编辑
摘要: # 解题思路: # 创建一个字典映射关系 dicts# 使用一个栈stk 遍历字符串s 得到一个新的字符串curItem 如果lastItem在dicts中的value和它相等 不做任何操作# 如果不等 入栈 有lastItem的 先append lastItem 然后是curItem ## 最后判... 阅读全文
posted @ 2015-11-21 23:51 hao.ma 阅读(161) 评论(0) 推荐(0) 编辑
摘要: # Definition for singly-linked list.# class ListNode(object):# def __init__(self, x):# self.val = x# self.next = Noneclass Solutio... 阅读全文
posted @ 2015-11-21 22:35 hao.ma 阅读(109) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def fourSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[List[... 阅读全文
posted @ 2015-11-21 16:53 hao.ma 阅读(159) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页