<?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>BST - 四号程序员</title>
	<atom:link href="https://www.coder4.com/archives/tag/bst/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Thu, 05 Jul 2012 15:30:10 +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>数据结构重读 - 二叉排序树(BST)</title>
		<link>https://www.coder4.com/archives/3535</link>
					<comments>https://www.coder4.com/archives/3535#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 05 Jul 2012 13:27:55 +0000</pubDate>
				<category><![CDATA[算法&数据结构]]></category>
		<category><![CDATA[BST]]></category>
		<category><![CDATA[二叉排序树]]></category>
		<category><![CDATA[数据结构]]></category>
		<category><![CDATA[重读]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3535</guid>

					<description><![CDATA[1、前面讨论了静态查找表，它们的特点是，数据是一次性就给好了。 2、而对于动态查找表，数据可以是在查找过程中动态添加、生成的。其实这概念不太严谨。 3、二叉排序树(BST)：左子树上所有结点的值均小于根结点的值；右子树上所有结点的值均大于根结点上的值。 4、二叉排序树的查找过程： (1)若树为空，直接返回/跳出。 (2)树非空，则 (a)若key==root.data，return true。 (b)若key&#60;root.data, root = root.left[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3535/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
