<?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/%E7%BA%BF%E6%80%A7%E8%A1%A8/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Sun, 15 Apr 2012 14:17:42 +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>数据结构重读 – 线性表的顺序存储</title>
		<link>https://www.coder4.com/archives/3036</link>
					<comments>https://www.coder4.com/archives/3036#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Sat, 14 Apr 2012 09:21:36 +0000</pubDate>
				<category><![CDATA[算法&数据结构]]></category>
		<category><![CDATA[数据结构]]></category>
		<category><![CDATA[线性表]]></category>
		<category><![CDATA[重读]]></category>
		<category><![CDATA[顺序存储]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3036</guid>

					<description><![CDATA[1、线性表也可以用顺序表示实现，即用一组地址连续的存储单元依次存储线性表的数据元素。特点是ai和ai+1位于相邻的存储单元上，只要确定了存储线性表的起始位置，任意元素都可以随机存取。 2、LOC(ai) = LOC(a1)+(i-1)*l 3、通常用数组来描述数据结构中的顺序存储结构。 4、线性表的顺序存储不同于数组的地方是：数组的大小是静态不动的；而线性表类似于C++中的vector，如果存储空间不够，会自动的增加内部空间，而这一切，对外部用户是透明的。 5、顺序存储的[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3036/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>读书笔记－《数据结构》第二章－线性表的顺序存储</title>
		<link>https://www.coder4.com/archives/205</link>
					<comments>https://www.coder4.com/archives/205#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Sat, 26 Dec 2009 05:53:14 +0000</pubDate>
				<category><![CDATA[算法&数据结构]]></category>
		<category><![CDATA[严蔚敏]]></category>
		<category><![CDATA[数据结构]]></category>
		<category><![CDATA[线性表]]></category>
		<category><![CDATA[读书笔记]]></category>
		<category><![CDATA[顺序存储]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=205</guid>

					<description><![CDATA[读书笔记 《数据结构》严蔚敏，第二章的线性表（顺序存储），C++描述。 List.h #include #include typedef int Status; enum S{OK=0,WRONG=-1}; typedef struct { &#160;int *elem; &#160;int len; &#160;int listsize; } List; Status InitList(List &#38;L) { &#160;if((L.elem=new i[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/205/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
