10 2015 档案

摘要:"MySQL索引背后的数据结构及算法原理 " 摘要 本文以MySQL数据库为研究对象,讨论与数据库索引相关的一些话题。特别需要说明的是,MySQL支持诸多存储引擎,而各种存储引擎对索引的支持也各不相同,因此MySQL数据库支持多种索引类型,如BTree索引,哈希索引,全文索引等等。为... 阅读全文
posted @ 2015-10-30 00:20 scott_h 编辑
摘要:http://www.datasciencecentral.com/profiles/blogs/collection of svm libraries by language Support vector machines (SVMs) are supervised learning... 阅读全文
posted @ 2015-10-29 21:51 scott_h 阅读(357) 评论(0) 推荐(0) 编辑
摘要:公式:某些无法用markdown表达的公式,比如【底数】就用word 生成,转成图片。 cnblog markdown引擎 不支持平方公式 2^2 = 4,因为都能看懂,就没有转换 成图片 结构体 struct c struct 声明 定义 c与cpp struct声明 定义 区别:http://w 阅读全文
posted @ 2015-10-26 15:07 scott_h 编辑
摘要:库有两种:静态库(.a、.lib)和动态库(.so、.dll) golang貌似不支持动态库(待确认。。。) go 中的 package 首先是要知道你的环境变量 [GOPATH] [GOPATH]目录下 创建以下目录 /bin /pkg /src src中 新建文... 阅读全文
posted @ 2015-10-25 02:42 scott_h 编辑
摘要:2.如果进栈序列为e1,e2,e3,e4,则可能的出栈序列是() A)e3,e1,e4,e2 B)e2,e4,e3,e1 C)e3,e4,e1,e2 D)任意顺序 答案是:e2 e4 e3 e1 如题进栈序列为e1,e2,e3,e4, 先e1,e2,后出栈e2,再进栈e3,e4,然后全部... 阅读全文
posted @ 2015-10-21 18:04 scott_h 编辑
摘要:tools https://github.com/Zettlr/Zettlr https://www.zybuluo.com/mdeditor https://www.zybuluo.com/mdeditor?url=https://www.zybuluo.com/static/editor/md 阅读全文
posted @ 2015-10-19 21:34 scott_h 阅读(246) 评论(0) 推荐(0) 编辑
摘要:http://group.jobbole.com/7963/ comm 11311 【题目】:下列for循环的循环体执行次数为 A 0 B 1 C 无限 D 以上都不对 ======================= 【分析】 答案:A , 0次执行 阅读全文
posted @ 2015-10-18 12:27 scott_h 阅读(330) 评论(0) 推荐(0) 编辑
摘要:A Quick Tutorial on Implementing and Debugging Malloc, Free, Calloc, and ReallocLet’s write a malloc and see how it works with existing programs!This ... 阅读全文
posted @ 2015-10-18 00:48 scott_h 编辑
摘要:线程不是一定要设置成静态成员。 也可以设置成C方式的 全局函数。 就是一定要 》 存放在 (内存)全局代码区。因为不能随着 对象的构造,析构 而改变生命周期。 http://blog.csdn.net/wangningyu/article/details/7478322 为什么类中的线程函数必须要声 阅读全文
posted @ 2015-10-18 00:48 scott_h 编辑
摘要:http://my.oschina.net/u/2336532/blog/403617 上一篇文章(http://my.oschina.net/u/2336532/blog/400790)我们解决了在FFmpeg下如何处理H264和AAC的扩展数据, 根据解出的NALU长度恢复了H264的起始... 阅读全文
posted @ 2015-10-18 00:47 scott_h 编辑
摘要:http://my.oschina.net/u/2336532/blog/400790通过上一篇文章(http://my.oschina.net/u/2336532/blog/399058),我们用ffmpeg分离出一个多媒体容器中的音视频数据,但是很可能这些数据是不能被正确解码的。为什么呢?因为在... 阅读全文
posted @ 2015-10-18 00:46 scott_h 编辑
摘要:blog.jobbole.com/39186/ http://preshing.com/20130605/the worlds simplest lock free hash table/ http://mintomic.github.io/ Introduction Mintomic (... 阅读全文
posted @ 2015-10-17 17:12 scott_h 阅读(295) 评论(0) 推荐(0) 编辑
摘要:4.3 常量 常量使用关键字 const 定义,用于存储不会改变的数据。 存储在常量中的数据类型只可以是布尔型、数字型(整数型、浮点型和复数)和字符串型。 常量的定义格式: ,例如: 在 Go 语言中,你可以省略类型说明符 ,因为编译器可以根据变量的值来推断其类型。 显式类型定... 阅读全文
posted @ 2015-10-14 22:05 scott_h 阅读(201) 评论(0) 推荐(0) 编辑
摘要:https://en.wikipedia.org/wiki/Rendezvous_hashing https://godoc.org/github.com/tysontate/rendezvous https://github.com/tysontate/rendezvous Introd... 阅读全文
posted @ 2015-10-13 10:03 scott_h 阅读(2824) 评论(0) 推荐(0) 编辑
摘要:网站guide "官方文档" "国内镜像" 安装go 之后,用godoc 来安装自己本地的文档服务器, 打开浏览器 输入localhost:8080 就可以看到文档说明了。 "github 地址" 阅读全文
posted @ 2015-10-09 12:15 scott_h 阅读(269) 评论(0) 推荐(0) 编辑
摘要:学习某个语言后,忽然停用个半年的,很容易就忘记。又要重新学习! 所以为了快速 学习+回顾 golang,做了这个概要整理 "先说下golang资料整理" "The Way to Go 中文译本" 4.2.1 包的概念、导入与可见性 你必须在源文件中非注释的第... 阅读全文
posted @ 2015-10-09 11:34 scott_h 编辑
摘要:1.安装 http://www.cmake.org/download/ 大家可以根据需求,下载一个适合的版本 我的机器环境 Linux ubuntu 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:08:14 UTC 2014 i686 i686 i68 阅读全文
posted @ 2015-10-06 16:13 scott_h 编辑
摘要:github: https://github.com/CppCon/CppCon2015CppCon 2015 Presentation Materialshttps://github.com/CppCon/CppCon2015 is the canonical location for prese... 阅读全文
posted @ 2015-10-05 21:03 scott_h 阅读(464) 评论(0) 推荐(0) 编辑
摘要:1.有些系统的功能可能重复 比如reids既是KV数据库,也可以是缓存系统,还可以是 消息分发系统 将来考虑再 以什么样的形式 去合并, 使归纳更准确。 2.将来会做个索引,现在 东西太多,导致看的很麻烦 [集群管理] "mesos" Program agains... 阅读全文
posted @ 2015-10-04 23:54 scott_h 阅读(4506) 评论(0) 推荐(0) 编辑
摘要:Introducing Brotli: a new compression algorithm for the internet http://google opensource.blogspot.jp/2015/09/introducing brotli new compression.htm... 阅读全文
posted @ 2015-10-04 14:58 scott_h 阅读(341) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示