摘要: Mathematical Thought From Ancient To Modern Times 阅读全文
posted @ 2016-12-29 23:25 papering 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 总结: 1、 一个算法由控制结构(顺序、分支和循环3种)和原操作(指固有数据类型的操作)构成的,则算法时间取决于两者的综合效果。 2、 N*N矩阵乘法算法 时间复杂度T(n)=O(n^3) for(i=1;i<=n;i++) for(j=1;j<=n;j++) c[i][j]=0 for(k=1;k 阅读全文
posted @ 2016-12-29 19:54 papering 阅读(373) 评论(0) 推荐(0) 编辑
摘要: http://dev.mysql.com/doc/refman/5.7/en/index-btree-hash.html Hash Index Characteristics Hash indexes have somewhat different characteristics from thos 阅读全文
posted @ 2016-12-29 19:16 papering 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 小结 1、 mysql> INSERT INTO my_table (phone) VALUES (NULL); 有手机号但是不知道 mysql> INSERT INTO my_table (phone) VALUES ('');没有手机号 http://dev.mysql.com/doc/refm 阅读全文
posted @ 2016-12-29 19:06 papering 阅读(464) 评论(0) 推荐(0) 编辑
摘要: https://www.percona.com/blog/2006/06/09/why-mysql-could-be-slow-with-large-tables/ 阅读全文
posted @ 2016-12-29 18:56 papering 阅读(149) 评论(0) 推荐(0) 编辑
摘要: http://www-igm.univ-mlv.fr/~lecroq/string/node14.html Main features performs the comparisons from right to left; preprocessing phase in O(m+) time and 阅读全文
posted @ 2016-12-29 17:13 papering 阅读(363) 评论(0) 推荐(0) 编辑
摘要: http://dev.mysql.com/doc/refman/5.7/en/index-btree-hash.html MySQL 5.7 Reference Manual / ... / Comparison of B-Tree and Hash Indexes 9.3.8 Comparison 阅读全文
posted @ 2016-12-29 17:02 papering 阅读(143) 评论(0) 推荐(0) 编辑
摘要: w-BIG TABLE USING BTREE >BETTER >USING HASH 阅读全文
posted @ 2016-12-29 15:59 papering 阅读(216) 评论(0) 推荐(0) 编辑
摘要: http://dev.mysql.com/doc/refman/5.7/en/prepare.html Statement names are not case sensitive. preparable_stmt is either a string literal or a user varia 阅读全文
posted @ 2016-12-29 10:59 papering 阅读(138) 评论(0) 推荐(0) 编辑
摘要: https://googleblog.blogspot.com/2015/10/introducing-accelerated-mobile-pages.html October 7, 2015 October 7, 2015 Smartphones and tablets have revolut 阅读全文
posted @ 2016-12-29 09:55 papering 阅读(159) 评论(0) 推荐(0) 编辑
摘要: https://developers.google.com/search/docs/guides/intro-structured-data Structured data refers to kinds of data with a high level of organization, such 阅读全文
posted @ 2016-12-29 09:45 papering 阅读(188) 评论(0) 推荐(0) 编辑
摘要: https://static.googleusercontent.com/media/research.google.com/en//archive/bigtable-osdi06.pdf Abstract Bigtable is a distributed storage system for m 阅读全文
posted @ 2016-12-29 09:22 papering 阅读(223) 评论(0) 推荐(0) 编辑
摘要: COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION 阅读全文
posted @ 2016-12-29 09:05 papering 阅读(133) 评论(0) 推荐(0) 编辑
摘要: COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION 阅读全文
posted @ 2016-12-29 08:50 papering 阅读(226) 评论(0) 推荐(0) 编辑