Paul hates palindromes. He assumes that string
s is tolerable if each its character is one of the first
p letters of the English alphabet and
s doesn't contain any palindrome contiguous substring ...
分类:
其他好文 时间:
2014-09-17 18:47:02
阅读次数:
247
SRC=http://www.cs.rutgers.edu/~pxk/416/notes/13-fs-studies.html Paul Krzyzanowski
April 24, 2014
Introduction
We've studied various approaches to file...
分类:
其他好文 时间:
2014-09-17 01:00:51
阅读次数:
409
三点以下的情况就不写了
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
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
作者利用各种优化方法提取图像的feature map,避免了普通Convolutional Neural Network中得encoder部分。参考资料: Deconvolutional Networks, Matthew D. Zeiler, Dilip Krishnan, Graham W. ....
分类:
Web程序 时间:
2014-09-06 23:41:14
阅读次数:
1789
汉澳sinox不仅能通过wine运行windows应用程序,还能通过ndis运行windows驱动程序
汉澳sinox使用 Windows NDIS 驱动程序
具体实现方法是用ndisgen把windows驱动程序sys驱动程序转换成内核模块ko文件,然后让系统载入ko模块就能用了。ndis驱动负责模拟转换工作。
得益于 Bill Paul (wpaul) 的工作, Sinox已经可以...
LZ注:此文原作者是:Paul Irish(Google的前端开发工程师),本文是原文的部分译文. 我不再使用CSS Hacks了,相反的是,我将使用IE的条件判断将类应用到body标签。 但是,我想记录我之前碰到过的每一个浏览器特定的CSS 选择器和样式属性。我相信也没有其他方式提供样式表给独特的...
分类:
Web程序 时间:
2014-09-03 00:13:25
阅读次数:
494
题目链接题意 : 求凸包周长+一个完整的圆周长。因为走一圈,经过拐点时,所形成的扇形的内角和是360度,故一个完整的圆。思路 : 求出凸包来,然后加上圆的周长 1 #include 2 #include 3 #include 4 #include 5 #include 6 7 const...
分类:
其他好文 时间:
2014-08-29 10:58:28
阅读次数:
253
题目链接题意 : 让你找出最小的凸包周长 。思路 : 用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
《黑客与画家:硅谷创业之父paul graham文集》主要介绍黑客即优秀程序员的爱好和动机,讨论黑客成长、黑客对世界的贡献以及编程语言和黑客工作方法等所有对计算机时代感兴趣的人的一些话题。书中的内容不但有助于了解计算机编程的本质、互联网行业的规则,还会帮助读者了解我们这个时代、迫使读者独立思考。
计算机程序只是文本而已,你选择什么语言,决定了你能说什么话,编程语言就是程序员的思维...
分类:
其他好文 时间:
2014-08-25 19:19:55
阅读次数:
256