<?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/%E9%82%BB%E6%8E%A5%E7%9F%A9%E9%98%B5/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Wed, 13 Jun 2012 13:03:51 +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>数据结构重读 - 图的数组表示法(邻接矩阵)和DFS图遍历算法</title>
		<link>https://www.coder4.com/archives/3412</link>
					<comments>https://www.coder4.com/archives/3412#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Tue, 12 Jun 2012 03:33:28 +0000</pubDate>
				<category><![CDATA[算法&数据结构]]></category>
		<category><![CDATA[图]]></category>
		<category><![CDATA[数组]]></category>
		<category><![CDATA[邻接矩阵]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3412</guid>

					<description><![CDATA[可以用两个数组分别存储数据元素（顶点）、数据元素之间的关系（边或弧度）。 顶点数组不说了，表示弧的数组称为“邻接矩阵”AdjMatrix。 对于有向图：AdjMatrix[i][j]为0表示顶点i和顶点j之间无弧，1为i和j间有弧。 对于无向图：AdjMatrix[i][j]同样是1表示有弧，0无弧。单AdjMatrix[i][j]为1则一定有AdjMatrix[j][i]为1，因为弧是无方向对称的。 对于网（弧带权）：AdjMatrix[i][j]上是w或者无穷大，w表[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3412/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
