摘要: Metaheuristic 阅读全文
posted @ 2016-11-04 13:24 papering 阅读(147) 评论(0) 推荐(0) 编辑
摘要: THE ARCHITECTURE OF COMPLEXITY HERBERT A. SIMON* Professor of Administration, Carnegie Institute of Technology (Read April 26, 1962) 阅读全文
posted @ 2016-11-04 13:15 papering 阅读(149) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Greedy_algorithm 阅读全文
posted @ 2016-11-04 12:57 papering 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 大话数据结构 线性表 linear list n个数据元素的有限序列 线性链表:每个节点只包含一个指针域 循环链表 circular linked list O(1) 将2个线性表合并成一个表,仅需将一个表的表尾和另一个表的表头相接:仅需改变2个指针值即可。 双向链表 double linked l 阅读全文
posted @ 2016-11-04 12:52 papering 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 大话数据结构存放线性表数据空间一段连续的存储单元,需预分配存储空间,元素个数受限一组任意的存储单元,反, ,反时间查O(1)-O(n)增删O(n)-O(1)APP0:在游戏开发中,用户注册信息,多读取--玩家武器装备列表,随时增删1:当线性表元素个数变化较大或未知时。 阅读全文
posted @ 2016-11-03 23:52 papering 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 情景描述ONLYstore_name+AdWord基础表数据表 BASE_TABLEAdWord food drink1w1 1f1 1d12w2 2f_ 2d_3w1 3f_ 3d_4w_ 4f99 4d_三个字段,联合起来具有唯一性_标识任意数字抓取数据结果表 DATA_TABLEurl pag 阅读全文
posted @ 2016-11-01 18:01 papering 阅读(129) 评论(0) 推荐(0) 编辑
摘要: https://zh.wikipedia.org/wiki/数字信号 数字信号可以有多重的含义。它可以用来表示已经数字化的离散时间信号,或者表示数字系统中的波形信号。 离散时间信号 数字信号(Digital signal)是离散时间信号(discrete-time signal)的数字化表示,通常可 阅读全文
posted @ 2016-11-01 13:29 papering 阅读(1082) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 功率半导体器件又可根据对电路信号的控程度分为全型 、半控型及不可;或按驱动电路信号 性质分为电压驱动型 、电流驱动型等划分类别 电流驱动型等划分类别 电流驱动型等划分类别 。 看完这篇,请不要再说不懂MOSFET!--科普知识 http://www.ime.cas.cn/icac/le 阅读全文
posted @ 2016-11-01 13:24 papering 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 半导体器件可以通过结构和材料上的设计达到控制电流传输的目的,并以此为基础构建各种处理不同信号的电路。这是半导体在当前电子技术中广泛应用的原因。 2、 由化学键结的观点来看,获得足够能量、进入导电带的电子也等于有足够能量可以打破电子与固体原子间的共价键,而变成自由电子,进而对电流传导做出 阅读全文
posted @ 2016-10-31 20:06 papering 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 电机的旋转原理 - 电源设计电子电路基础电源技术信息网站_罗姆电源设计R课堂 https://techclass.rohm.com.cn/knowledge/motor/basics/basics-02/49 电机的发电原理 - 电源设计电子电路基础电源技术信息网站_罗姆电源设计R课堂 https: 阅读全文
posted @ 2016-10-31 12:21 papering 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 思维 <?php$w = 123;$wb = $w;$w = 456;echo $wb;?><script type="text/javascript"> var w = 123; var wb = w; w = 456; alert(wb); var arr = [14, 23, 100, 4, 阅读全文
posted @ 2016-10-28 23:48 papering 阅读(185) 评论(0) 推荐(0) 编辑
摘要: https://zh.wikipedia.org/zh-cn/网段 在以太网环境中,一个网段其实也就是一个冲突域(碰撞域)。同一网段中的设备共享(包括通过集线器等设备中转连接)同一物理总线,在这一总线上执行CSMA/CD(载波监听多路访问/冲突检测)机制。不同网段间不共享同一物理层,因此不会跨网段发 阅读全文
posted @ 2016-10-28 14:32 papering 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 大话数据结构 阅读全文
posted @ 2016-10-28 13:28 papering 阅读(162) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Pointer_(computer_programming) In computer science, a pointer is a programming language object, whose value refers to (o 阅读全文
posted @ 2016-10-27 23:52 papering 阅读(314) 评论(0) 推荐(0) 编辑
摘要: Code.Complete.Second.Edition 2004 Bachman compared the Ptolemaic-to-Copernican change in astronomy to the change in computer programming in the early 阅读全文
posted @ 2016-10-27 00:01 papering 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1 '; 20 21 //??? 22 if ($rgbarray['red'] < 125 || $rgbarray['green'] < 125 || 23 $rgbarray['blue'] < 125 24 ) { 25 $data[$i][$j] = 1; 26 } el... 阅读全文
posted @ 2016-10-26 13:31 papering 阅读(687) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Grayscale https://zh.wikipedia.org/wiki/灰度图像 In photography and computing, a grayscale or greyscale digital image is an 阅读全文
posted @ 2016-10-26 12:44 papering 阅读(1089) 评论(0) 推荐(0) 编辑
摘要: 大津算法 阅读全文
posted @ 2016-10-26 09:06 papering 阅读(181) 评论(0) 推荐(0) 编辑
摘要: https://zh.wikipedia.org/wiki/二值化 二值化是图像分割的一种方法。在二值化图象的时候把大于某个临界灰度值的像素灰度设为灰度极大值,把小于这个值的像素灰度设为灰度极小值,从而实现二值化。 根据阈值选取的不同,二值化的算法分为固定阈值和自适应阈值。 比较常用的二值化方法则有 阅读全文
posted @ 2016-10-26 09:04 papering 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 1、IP协议首部 TCP报文段的首部 UDP分组结构 ip数据报 tcp数据报 UDP校验 w 报文长度该字段指定UDP报头和数据总共占用的长度。可能的最小长度是8字节,因为UDP报头已经占用了8字节。由于这个字段的存在,UDP报文总长不可能超过65535字节(包括8字节的报头,和65527字节的数 阅读全文
posted @ 2016-10-26 00:26 papering 阅读(582) 评论(0) 推荐(0) 编辑
摘要: https://my.oschina.net/fz04003/blog/63327 阅读全文
posted @ 2016-10-25 20:03 papering 阅读(376) 评论(0) 推荐(0) 编辑
摘要: Support Vector Machine 阅读全文
posted @ 2016-10-25 00:54 papering 阅读(100) 评论(0) 推荐(0) 编辑
摘要: google验证码 gif验证码 阅读全文
posted @ 2016-10-25 00:41 papering 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 查询10分钟前的数据 SELECT * FROM tabWHERE ( NOW()- INTERVAL 3 MINUTE)<gmt_create 3分钟内新建的数据 分组排序 -- 按 field2分组,取出组内field1最大值对应行的field3字段值SELECT MAX(field1), fi 阅读全文
posted @ 2016-10-24 17:49 papering 阅读(330) 评论(0) 推荐(0) 编辑
摘要: http://www.infoq.com/cn/articles/CAPTCHA-image-recognitionhttp://i.wshang.com/Post/Default/Index/pid/242211.html 阅读全文
posted @ 2016-10-24 13:29 papering 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Volume 2 ctrl+s http://web.mit.edu/merolish/ticpp/TicV2.html http://web.mit.edu/merolish/ticpp/TicV2.html#_TocRef53985657 Volume 1 http://web.mit.edu/ 阅读全文
posted @ 2016-10-24 03:27 papering 阅读(145) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Levenshtein_distance 验证码识别 图片中的二维码截取 阅读全文
posted @ 2016-10-24 02:29 papering 阅读(124) 评论(0) 推荐(0) 编辑
摘要: similar_text 阅读全文
posted @ 2016-10-24 02:14 papering 阅读(125) 评论(0) 推荐(0) 编辑
摘要: '0' => '000111000011111110011000110110000011110000011110000011110000011110000011110000011110000011011000110011111110000111000', '1' => '00011100001111 阅读全文
posted @ 2016-10-24 00:43 papering 阅读(1522) 评论(0) 推荐(0) 编辑
摘要: https://zh.wikipedia.org/wiki/三原色模式 红光与绿光按某种比例复合,对三种锥状细胞刺激后产生的色觉可与眼睛对单纯的黄光的色觉等效。但决不能认为红光与绿光按某种比例复合后生成黄光,或黄光是由红光和绿光复合而成的。 人的眼睛内有几种辨别颜色的锥形感光细胞,分别对黄绿色、绿色 阅读全文
posted @ 2016-10-23 20:20 papering 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 取出图片二维码部分 阅读全文
posted @ 2016-10-22 00:08 papering 阅读(234) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Functional_programming In computer science, functional programming is a programming paradigm—a style of building the str 阅读全文
posted @ 2016-10-21 22:34 papering 阅读(196) 评论(0) 推荐(0) 编辑
摘要: Professional.JavaScript.for.Web.Developers.3rd.Edition.Jan.2012 阅读全文
posted @ 2016-10-20 23:57 papering 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Professional.JavaScript.for.Web.Developers.3rd.Edition.Jan.2012 标记清楚 引用计数 阅读全文
posted @ 2016-10-20 00:02 papering 阅读(154) 评论(0) 推荐(0) 编辑
摘要: bool(true) bool(false) bool(true) bool(true) 阅读全文
posted @ 2016-10-19 17:03 papering 阅读(212) 评论(0) 推荐(0) 编辑
摘要: <?php $w = 'w'; $wb = '123'.$w; $w = 'ww'; echo $wb; if(TRUE){ $wd = '123wd'; } echo $wd; if(FALSE){ $we = '123wd'; } var_dump($we); 阅读全文
posted @ 2016-10-19 15:51 papering 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1 43 44 45 46 47 48 49 pagination-diy 50 51 52 53 54 55 56 57 58 59 60 61 '; 63 } ?> 64 65 66 67 68 77 78 阅读全文
posted @ 2016-10-18 13:16 papering 阅读(217) 评论(0) 推荐(0) 编辑
摘要: Professional.JavaScript.for.Web.Developers.3rd.Edition ECMA中的参数在内部是用一个数组来表示的。 阅读全文
posted @ 2016-10-17 23:40 papering 阅读(163) 评论(0) 推荐(0) 编辑
摘要: dream 阅读全文
posted @ 2016-10-16 23:54 papering 阅读(130) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Advanced_Packaging_Tool Eventually, a new team picked up the project, began to build new features and released version 0 阅读全文
posted @ 2016-10-15 23:34 papering 阅读(292) 评论(0) 推荐(0) 编辑