上一页 1 ··· 258 259 260 261 262 263 264 265 266 ··· 270 下一页
摘要: There are a number of spherical balloons spread in two-dimensional space. For each balloon, provided input is the start and end coordinates of the hor 阅读全文
posted @ 2016-12-18 20:01 bonelee 阅读(311) 评论(0) 推荐(0) 编辑
摘要: There are n bulbs that are initially off. You first turn on all the bulbs. Then, you turn off every second bulb. On the third round, you toggle every 阅读全文
posted @ 2016-12-18 18:14 bonelee 阅读(242) 评论(0) 推荐(0) 编辑
摘要: Given a set of intervals, for each of the interval i, check if there exists an interval j whose start point is bigger than or equal to the end point o 阅读全文
posted @ 2016-12-18 17:08 bonelee 阅读(301) 评论(0) 推荐(0) 编辑
摘要: Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where the two words do not share common letters. You may assum 阅读全文
posted @ 2016-12-17 23:59 bonelee 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 转自:http://cek.io/blog/2015/12/03/event-loop/ What is JavaScript What is JavaScript anyway? Some words: It’s a single-threaded, non-blocking, asynchron 阅读全文
posted @ 2016-12-16 12:14 bonelee 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 什么是事件循环 什么是事件循环 Node只运行在一个单一线程上,至少从Node.js开发者的角度是这样的。在底层, Node是通过libuv来实现多线程的。 Libuv库负责Node API的执行。它将不同的任务分配给不同的线程,形成一个事件循环, 以异步的方式将任务的执行结果返回给V8引擎。可以简 阅读全文
posted @ 2016-12-16 10:57 bonelee 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 第3章 The Bourne-Again Shell Bash的主要组件:输入处理,解析,单词展开(word expansion)和其他命令处理,管道(pipeline)中的命令执行。这些组件构成一个流水线(pipeline),从键盘或脚本中获取字符,然后逐步转化为命令。 图3.1 Bash组件结构 阅读全文
posted @ 2016-12-15 20:28 bonelee 阅读(863) 评论(0) 推荐(0) 编辑
摘要: Input History readline tracks the input history automatically. There are two different sets of functions for working with the history. The history for 阅读全文
posted @ 2016-12-15 20:23 bonelee 阅读(2658) 评论(0) 推荐(0) 编辑
摘要: CSDN:AngularJS的设计理念是什么?灵感来自于什么? Misko:AngularJS遵循的设计理念是——构建UI应该是声明式的。这也是AngularJS中标识符(directives)想法的灵感来源。 因此有了下文的摘录: 声明式编程和命令式编程的比较 先统一一下概念,我们有两种编程方式: 阅读全文
posted @ 2016-12-15 16:49 bonelee 阅读(861) 评论(0) 推荐(0) 编辑
摘要: 如下: 更智能点: python实现: 参考:http://docs.splunk.com/Documentation/Splunk/6.5.1/RESTTUT/RESTsearches 阅读全文
posted @ 2016-12-14 11:43 bonelee 阅读(2122) 评论(0) 推荐(0) 编辑
上一页 1 ··· 258 259 260 261 262 263 264 265 266 ··· 270 下一页