Count and SayThe count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1 is read off as "one 1" or 11.11...
分类:
其他好文 时间:
2015-11-14 06:25:12
阅读次数:
266
开发体验心得总结Part One 阅读总结【No Silver Bullet: Essence and Accidents of Software Engineering】本文介绍了软件开发的要点以及开发过程中将碰到的问题,目的在于说明在软件开发中没有“银弹”,也就是没有解决一切问题的绝对武器。【T...
分类:
其他好文 时间:
2015-11-14 01:01:51
阅读次数:
208
http{limit_req_zone $binary_remote_addr zone=req_one:10m rate=100r/s; server { listen 8080; server_name localhost; location /s...
分类:
其他好文 时间:
2015-11-13 20:42:41
阅读次数:
265
问题:‘-[UIViewController _loadViewFromNibNamed:bundle:] loaded the "One" nib but the view outlet was not set.‘原因:没有做xib文件到HLOneViewControler程序的关联解决步骤:1,...
分类:
其他好文 时间:
2015-11-13 20:35:12
阅读次数:
326
春节坐在回家的火车上百无聊赖,偶然看到 Parallelism in one line 这篇在 Hacker News 和 reddit 上都评论过百的文章,顺手译出,enjoy:-)http://www.zhangzhibo.net/2014/02/01/parallelism-in-one-li...
分类:
编程语言 时间:
2015-11-13 10:15:38
阅读次数:
405
for web browser have only one thread.while loading or execute js, the UI update will be blocked.some way to improve1.put js before tag.so js will be ....
分类:
Web程序 时间:
2015-11-12 21:53:31
阅读次数:
315
Air RaidTime Limit: 1000MSMemory Limit: 10000KTotal Submissions: 7511Accepted: 4471DescriptionConsider a town where all the streets are one-way and ea...
分类:
其他好文 时间:
2015-11-12 21:40:18
阅读次数:
234
翻译合并K个已排序的链表,并且将其排序并返回。
分析和描述其复杂性。原文Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.代码我们采用分治的方法来解决这个问题,其有K个链表,不断将其划分(partition),再将其归并(merge)。划分的部分并不难,将...
分类:
其他好文 时间:
2015-11-12 18:16:18
阅读次数:
275
Problem DescriptionYou are given a sequence of N integers.You should choose some numbers(at least one),and make the product of them as big as possible...
分类:
其他好文 时间:
2015-11-12 16:00:58
阅读次数:
355