gevent core就是封装了libev,使用了cython的语法,感兴趣童鞋可以好好研究研究。其实libev是有python的封装pyev(https://pythonhosted.org/pyev/),不过pyev是使用C来写扩展的,代码巨复杂。在看core.pyx代码之前先学习一下core.pyx用到的cython知识。一: cython基础知识1.cdef, def, cpdef的区别 ...
分类:
其他好文 时间:
2014-09-13 20:09:35
阅读次数:
354
这篇文章主要介绍了关闭浏览器输入框自动补齐 兼容IE,FF,Chrome等主流浏览器,需要的朋友可以参考下。希望对大家有所帮助Firefox 和 IE 的浏览器各自实现了input历史记录的功能,可以简化输入时的麻烦,但是,有时候弹出的下拉框会挡住页面显示内容,而且在某些情况下也不需要对input框...
分类:
其他好文 时间:
2014-09-13 20:08:55
阅读次数:
309
http://poj.org/problem?id=1860DescriptionSeveral currency exchange points are working in our city. Let us suppose that each point specializes in two p...
分类:
其他好文 时间:
2014-09-13 20:08:45
阅读次数:
410
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:
其他好文 时间:
2014-09-13 20:08:35
阅读次数:
179
Sort a linked list inO(nlogn) time using constant space complexity. 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int ...
分类:
其他好文 时间:
2014-09-13 20:08:05
阅读次数:
204
Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1].No...
分类:
其他好文 时间:
2014-09-13 20:07:55
阅读次数:
287
'release' is unavailable: not available in automatic reference counting modeARC forbids explicit message send of'release''release' is unavailable: not...
分类:
其他好文 时间:
2014-09-13 20:07:45
阅读次数:
140
Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL. 1 /*...
分类:
其他好文 时间:
2014-09-13 20:07:35
阅读次数:
169
Now I will introduce a way to compress a text. When we are confronted with numerous data, and the data has a similar structure, we can take advantag.....
分类:
其他好文 时间:
2014-09-13 20:07:25
阅读次数:
182
一、系统环境:我使用的Ubuntu版本是:ubuntu-12.04-desktop-i386.isojdk版本:jdk1.7.0_67hadoop版本:hadoop-2.5.0二、下载jdk和hadoop,并上传到Ubuntu系统中Vmware中的Linux与主机系统Windows交互文件的方法请参...
分类:
其他好文 时间:
2014-09-13 20:07:15
阅读次数:
528
hdu4998:http://acm.hdu.edu.cn/showproblem.php?pid=4998题意:给你n个点,以及绕每个点旋转的弧度。然后,问你经过这n次旋转,平面中的点总的效果是相当于哪个点旋转了多少弧度。题解:我的第一道计算几何。可以选两个点,求出旋转之后的对应点,然后分别求出这...
分类:
其他好文 时间:
2014-09-13 20:07:05
阅读次数:
213
select比epoll效率差的原因:select是轮询,epoll是触发式的,所以效率高。Select:1.Socket数量限制:该模式可操作的Socket数由FD_SETSIZE决定,内核默认32*32=1024.2.操作限制:通过遍历FD_SETSIZE(1024)个Socket来完成调度,不...
分类:
系统相关 时间:
2014-09-13 20:06:55
阅读次数:
199
Given an array of integers, every element appearsthreetimes except for one. Find that single one.Note:Your algorithm should have a linear runtime comp...
分类:
其他好文 时间:
2014-09-13 20:06:45
阅读次数:
155
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space? 1 /** 2 * Definition for singly-linked l....
分类:
其他好文 时间:
2014-09-13 20:06:35
阅读次数:
184
Given a binary tree, return thepreordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,2,3].Not...
分类:
其他好文 时间:
2014-09-13 20:06:25
阅读次数:
173
一直对书和各种介绍不太满意, 终于看到一篇比较好的了,迅速转载.首先要推荐一下:http://www.alidata.org/archives/1470阿里的大牛在上面的文章中比较详细的介绍了shuffle过程中mapper和reduce的每个过程,强烈推荐先读一下。不过,上文没有写明一些实现的细节...
分类:
其他好文 时间:
2014-09-13 20:06:15
阅读次数:
202
CSS居中一直是一个棘手的问题,偶然在网上看到一篇介绍的文章,总结的很详细。原文地址:http://css-tricks.com/centering-css-complete-guide/用了两天翻译了下,但水平实在有限。阅读地址:https://github.com/zjzhome/center-...
分类:
Web程序 时间:
2014-09-13 20:05:45
阅读次数:
191