摘要: 前言 斐波那契堆(Fibonacci heap)是计算机科学中最小堆有序树的集合。它和二项式堆有类似的性质,但比二项式堆有更好的均摊时间。堆的名字来源于斐波那契数,它常用于分析运行时间。 堆结构介绍 基本术语介绍: 关键字:堆节点储存的用于比较的信息 度数:堆节点拥有的孩子数(注意,不包括... 阅读全文
posted @ 2015-06-06 00:00 转瞬之夏 阅读(21053) 评论(2) 推荐(2) 编辑
摘要: 一、序言 在使用partition-exchange排序算法时,如快速排序算法(即使选择了一个好的关键元素pivot values),我们往往面临一个很尴尬的境地--当排序对象中有很多重复的元素,partition-exchange排序算法表现很不尽如人意。当所有元素都相等时,这就特别容易理解了。... 阅读全文
posted @ 2015-05-31 01:28 转瞬之夏 阅读(11566) 评论(1) 推荐(2) 编辑
摘要: 前言 LZ77算法是无损压缩算法,由以色列人Abraham Lempel发表于1977年。LZ77是典型的基于字典的压缩算法,现在很多压缩技术都是基于LZ77。鉴于其在数据压缩领域的地位,本文将结合图片和源码详细介绍其原理。原理介绍: 首先介绍几个专业术语。 1.lookahead buffe... 阅读全文
posted @ 2014-12-02 20:50 转瞬之夏 阅读(39088) 评论(4) 推荐(8) 编辑
摘要: 前言 哈夫曼编码(Huffman coding)是一种可变长的前缀码。哈夫曼编码使用的算法是David A. Huffman还是在MIT的学生时提出的,并且在1952年发表了名为《A Method for the Construction of Minimum-Redundancy Codes》的... 阅读全文
posted @ 2014-11-27 22:10 转瞬之夏 阅读(28005) 评论(1) 推荐(2) 编辑
摘要: 前言 最近突然想搭建个人博客,尽管笔者擅长java-web,但综合各种原因,于是选择了大众化的php+mysql搭建个人博客。对于php,只闻其大名,但从未学过,于是,笔者将从php环境搭建开始,到服务器、域名的租赁,php博客模板的选择,一一记录整个过程。计划为学习php用时一个月,租赁服务器和... 阅读全文
posted @ 2014-11-17 20:15 转瞬之夏 阅读(7615) 评论(0) 推荐(0) 编辑
摘要: Perface In the former chapter, I talk about topics about hashCode, And I will continue to finish the introduction to hashCode(). In this chapter, I w... 阅读全文
posted @ 2014-10-24 19:42 转瞬之夏 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Preface "The code is more what you’d call guidelines than actual rules" – truer words were never spoken. It’s important when writing code to understa... 阅读全文
posted @ 2014-10-18 16:14 转瞬之夏 阅读(357) 评论(0) 推荐(0) 编辑
摘要: Preface Though I have used Java programme language for almost a year, I'm not familiar with a notion 'hash'. I have gotten a little knowledge about h... 阅读全文
posted @ 2014-10-11 21:30 转瞬之夏 阅读(313) 评论(0) 推荐(0) 编辑
摘要: Now I will introduce a way to compress a text. When we are confronted with numerous data, and the data has a similar structure, we can take advantag... 阅读全文
posted @ 2014-09-13 19:50 转瞬之夏 阅读(428) 评论(0) 推荐(0) 编辑
摘要: I have designed a component of a web system with my workmate. In detail, I am just a coder instead of a designer, as all of it are designed by my ma... 阅读全文
posted @ 2014-09-11 20:25 转瞬之夏 阅读(170) 评论(0) 推荐(0) 编辑