码迷,mamicode.com
首页 > 2014年09月13日 > 全部分享
[gevent源码分析] libev cython绑定core.pyx
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等主流浏览器
这篇文章主要介绍了关闭浏览器输入框自动补齐 兼容IE,FF,Chrome等主流浏览器,需要的朋友可以参考下。希望对大家有所帮助Firefox 和 IE 的浏览器各自实现了input历史记录的功能,可以简化输入时的麻烦,但是,有时候弹出的下拉框会挡住页面显示内容,而且在某些情况下也不需要对input框...
分类:其他好文   时间:2014-09-13 20:08:55    阅读次数:309
POJ1860:Currency Exchange(BF)
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
Maximum Depth of Binary Tree
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 List
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
Binary Tree Postorder Traversal
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
libXml ARC forbids explicit message send of'release'
'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
Rotate List
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
static dictionary methods of text compression
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
在虚拟机VM中安装的Ubuntu上安装和配置Hadoop
一、系统环境:我使用的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
Rotate
hdu4998:http://acm.hdu.edu.cn/showproblem.php?pid=4998题意:给你n个点,以及绕每个点旋转的弧度。然后,问你经过这n次旋转,平面中的点总的效果是相当于哪个点旋转了多少弧度。题解:我的第一道计算几何。可以选两个点,求出旋转之后的对应点,然后分别求出这...
分类:其他好文   时间:2014-09-13 20:07:05    阅读次数:213
Linux下多路复用IO接口epoll/select/poll的区别
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
Single Number II
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
Linked List Cycle
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
Binary Tree Preorder Traversal
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
hadoop核心逻辑shuffle代码分析-map端 (转)
一直对书和各种介绍不太满意, 终于看到一篇比较好的了,迅速转载.首先要推荐一下:http://www.alidata.org/archives/1470阿里的大牛在上面的文章中比较详细的介绍了shuffle过程中mapper和reduce的每个过程,强烈推荐先读一下。不过,上文没有写明一些实现的细节...
分类:其他好文   时间:2014-09-13 20:06:15    阅读次数:202
[译]CSS居中
CSS居中一直是一个棘手的问题,偶然在网上看到一篇介绍的文章,总结的很详细。原文地址:http://css-tricks.com/centering-css-complete-guide/用了两天翻译了下,但水平实在有限。阅读地址:https://github.com/zjzhome/center-...
分类:Web程序   时间:2014-09-13 20:05:45    阅读次数:191
1070条   上一页 1 ... 11 12 13 14 15 16 17 ... 63 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!