<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	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>散列查找 - 四号程序员</title>
	<atom:link href="https://www.coder4.com/archives/tag/%E6%95%A3%E5%88%97%E6%9F%A5%E6%89%BE/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Wed, 26 Oct 2011 12:07:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>算法技术手册 – 查找 – 散列查找(Hash查找)</title>
		<link>https://www.coder4.com/archives/2586</link>
					<comments>https://www.coder4.com/archives/2586#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Wed, 26 Oct 2011 12:06:13 +0000</pubDate>
				<category><![CDATA[C && C++]]></category>
		<category><![CDATA[算法&数据结构]]></category>
		<category><![CDATA[散列查找]]></category>
		<category><![CDATA[查找]]></category>
		<category><![CDATA[算法技术手册]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=2586</guid>

					<description><![CDATA[对于含有n个元素的集合C，我们先构造一个Hash函数，让n映射到b个桶内，当选择合理时，速度会很快，时间复杂度O(1)。 完美哈希函数：不会产生冲突，是存在的。 对于&#62;=1个值映射到同一个桶的情况下，就会发生碰撞。处理方法： 链表：每个桶拉一个链表，第一遍散列后，在链表中查找是否存在元素。 开放定址：构造双变量散列函数h(u, j)。h(u, 0) = h(u)，此时退化为原始散列函数。 开放定址，分两类： 线性探测h(u, j)=(h(u)+j) m[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/2586/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
