<?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%A1%BA%E5%BA%8F%E5%AD%98%E5%82%A8/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Sun, 13 May 2012 10:56:47 +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/3142</link>
					<comments>https://www.coder4.com/archives/3142#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Sun, 13 May 2012 10:47:49 +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=3142</guid>

					<description><![CDATA[队列也可以用顺序存储表示。定义还是一样的：从队尾rear推入元素。从头部head拿出元素，是FIFO。 与链式存储一致，我们仍然需要附设两个指针front和rear分别表示队列头元素和队列元素的位置。初始时front=rear=0是队列空的条件。 每当插入新的队列元素时，尾指针将增1.删除队列头元素时，头指针增加1。即非空队列中：头元素总是指向队首元素，而尾指针总是指向队尾元素的下一个位置。 除了基本的顺序存储外，我们还可以使用循环数组来构造一个循环队列。 在循环队列中，[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3142/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<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/248</link>
					<comments>https://www.coder4.com/archives/248#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Sat, 26 Dec 2009 06:19:44 +0000</pubDate>
				<category><![CDATA[算法&数据结构]]></category>
		<category><![CDATA[二叉树]]></category>
		<category><![CDATA[数据结构]]></category>
		<category><![CDATA[顺序存储]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=248</guid>

					<description><![CDATA[BiTree.h:顺序存储二叉树及其基本操作 enum {MAX_TREE=100,OK=0,WRONG=-1}; typedef int BTree[MAX_TREE]; typedef int Status; struct position { &#160;int level,order; }; void InitBiTree(BTree &#38;T) { &#160;memset(T,0,sizeof(int)*MAX_TREE); } Status CreateBiTr[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/248/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>
