码迷,mamicode.com
首页 >  
搜索关键字:graham    ( 134个结果
诚实的力量。Paul Graham (Y Combinator 创始人)关于诚实的评论。
最近读 《Founders at Work》,读到 Paul Graham 关于他早期创立 Viaweb (被 Yahoo 收购后变为 Yahoo Store)的经历。他谈到“ Another advantage of telling the truth is that you don’t have...
分类:其他好文   时间:2014-10-22 08:44:49    阅读次数:149
Why you should QC your reads AND your assembly?
鲤鱼基因组:http://www.ntv.cn/a/20140923/52953.shtml关于鲤鱼基因组的测定,数据质量控制遭到质疑。Why you should QC your reads AND your assembly?Graham Etheringtonhttp://grahamethe...
分类:其他好文   时间:2014-10-05 13:53:28    阅读次数:158
黑客与画家 part3保罗·格雷厄姆其人其事
part3保罗·格雷厄姆其人其事page14-page26 1964年,保罗·格雷厄姆(Paul Graham)出生于匹兹堡郊区的一个中产阶级家庭。父亲是核反应堆的物理学家,母亲再家照看他和他的妹妹。 青少年时代,格雷厄姆就开始编程。但是,他还喜欢许多与计算机无关的东西,这再在编程高手之中是.....
分类:其他好文   时间:2014-09-27 00:31:19    阅读次数:208
别为大公司拼命
别为大公司拼命利益声明:本文节选自Paul Graham所著《黑客与画家》大公司最大的困扰,就是无法准确测量每个员工的贡献。它会把所有人的贡献平均化。在大公司中,你只要一般性地努力工作,就能得到意料之中的薪水。你不能明显的无能或懒惰,但是谁也没觉得你会把全部精力投入工作。你不能对老板说,我打算十倍努...
分类:其他好文   时间:2014-09-24 20:46:17    阅读次数:161
convex hull - Graham's scam Algorithm version-0.1
input:a finite set of two dimentional points P (the number of points n is more than 2)output: the convex hull of PPesudo:1, sort P in Lexgrahical orde...
分类:其他好文   时间:2014-09-19 15:25:35    阅读次数:230
二维凸包 Graham 算法
三点以下的情况就不写了 Python: import math class Point( object ): def __init__( self, x, y ): self.x = x self.y = y def __cmp__( self, other ): if self.y < other.y:...
分类:其他好文   时间:2014-09-13 00:50:24    阅读次数:409
凸包 Graham 算法
import math class Point( object ): def __init__( self, x, y ): self.x = x self.y = y def __cmp__( self, other ): if self.y < other.y: return -1...
分类:其他好文   时间:2014-09-12 15:13:23    阅读次数:190
【Papers】《Deconvolutional Networks》阅读笔记
作者利用各种优化方法提取图像的feature map,避免了普通Convolutional Neural Network中得encoder部分。参考资料: Deconvolutional Networks, Matthew D. Zeiler, Dilip Krishnan, Graham W. ....
分类:Web程序   时间:2014-09-06 23:41:14    阅读次数:1789
POJ 1113 Wall(Graham求凸包周长)
题目链接题意 : 求凸包周长+一个完整的圆周长。因为走一圈,经过拐点时,所形成的扇形的内角和是360度,故一个完整的圆。思路 : 求出凸包来,然后加上圆的周长 1 #include 2 #include 3 #include 4 #include 5 #include 6 7 const...
分类:其他好文   时间:2014-08-29 10:58:28    阅读次数:253
HDU 1392 Surround the Trees (Graham求凸包周长)
题目链接题意 : 让你找出最小的凸包周长 。思路 : 用Graham求出凸包,然后对每条边求长即可。Graham详解 1 #include 2 #include 3 #include 4 #include 5 #include 6 7 using namespace std ; 8 9...
分类:其他好文   时间:2014-08-29 10:40:37    阅读次数:160
134条   上一页 1 ... 10 11 12 13 14 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!