<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>一花一世界 &#187; 哈希表</title>
	<atom:link href="http://www.juliuschen.com/archives/tag/%e5%93%88%e5%b8%8c%e8%a1%a8/feed" rel="self" type="application/rss+xml" />
	<link>http://www.juliuschen.com</link>
	<description>谈笑间，樯橹灰飞烟灭</description>
	<lastBuildDate>Sun, 29 Aug 2010 10:32:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>查找表</title>
		<link>http://www.juliuschen.com/archives/5.html</link>
		<comments>http://www.juliuschen.com/archives/5.html#comments</comments>
		<pubDate>Mon, 07 Dec 2009 15:51:17 +0000</pubDate>
		<dc:creator>Julius Chen</dc:creator>
				<category><![CDATA[Search]]></category>
		<category><![CDATA[哈希表]]></category>
		<category><![CDATA[查找表]]></category>

		<guid isPermaLink="false">http://www.juliuschen.com/?p=5</guid>
		<description><![CDATA[查找表（Search Table）是一种在实际应用中大量使用的数据结构。查找表分为静态查找表和动态查找表，静态查找表只进行查找操作，动态查找表则在查找的同时还进行插入或删除操作。 静态查找表主要是：顺序表、线性链表、索引顺序表等。 动态查找表主要是：二叉排序树、平衡二叉树、B-树、B+树等。 哈希表 根据设定的哈希函数H(key)和处理冲突的方法将一组关键字映像到一个有限的连续的地址集（区间）上，并以关键字在地址集中的“像”作为记录在表中的存储位置，这种表就叫哈希表。 哈希函数的构造方法： 1. 直接定址法 H(key) = key 或 H(key) = a * key + b 2. 除留余数法 H(key) = key % p, p ≤ length （一般情况下，p为质数或不包含]]></description>
		<wfw:commentRss>http://www.juliuschen.com/archives/5.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->
