摘要: # 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) 编辑