<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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>云飞扬的ITblog &#187; 数据结构与算法</title>
	<atom:link href="http://www.ajaxcn.net/archives/category/data-structures-and-algorithms/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxcn.net</link>
	<description>关注 flex ajax asp.net等</description>
	<lastBuildDate>Sat, 28 Jan 2012 13:00:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>产生20个不同的两位整数的随机数(c#)</title>
		<link>http://www.ajaxcn.net/archives/326</link>
		<comments>http://www.ajaxcn.net/archives/326#comments</comments>
		<pubDate>Sat, 19 Sep 2009 06:25:34 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=326</guid>
		<description><![CDATA[ 产生20个不同的两位整数的随机数，并且对它们进行由小到大排序。特别提醒：
程序要自动生成20个不同的整数，并且这些整数必须是2位的，如3不是两位整数，58是。
   Random r = new Random(unchecked((int)DateTime.Now.Ticks));
 int a = r.Next(10, 100);
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/326/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>编程求问号数字问题</title>
		<link>http://www.ajaxcn.net/archives/319</link>
		<comments>http://www.ajaxcn.net/archives/319#comments</comments>
		<pubDate>Wed, 09 Sep 2009 16:12:37 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=319</guid>
		<description><![CDATA[
一个6位数乘以一个3位数，得到一个结果，但不清楚6位数中的两个数字是什么，而且结果有一位数字也不清楚，
请编程找出问号代表的数字，答案可能多个。
12？56？* 123=154?4987，代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/319/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>输入10个数字，应用堆排序算法用c#实现</title>
		<link>http://www.ajaxcn.net/archives/287</link>
		<comments>http://www.ajaxcn.net/archives/287#comments</comments>
		<pubDate>Tue, 01 Sep 2009 16:45:24 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=287</guid>
		<description><![CDATA[请用c#写出一个堆排序算法，要求输入10个整数，输出排序结果。
代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/287/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>输入10个数字，应用归并排序算法用c#实现</title>
		<link>http://www.ajaxcn.net/archives/285</link>
		<comments>http://www.ajaxcn.net/archives/285#comments</comments>
		<pubDate>Tue, 01 Sep 2009 16:43:11 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=285</guid>
		<description><![CDATA[输入10个数字，应用归并排序算法用c#实现
请用c#写出一个归并排序算法，要求输入10个整数，输出排序结果。
代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/285/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>输入10个数字，应用快速排序算法用c#实现</title>
		<link>http://www.ajaxcn.net/archives/283</link>
		<comments>http://www.ajaxcn.net/archives/283#comments</comments>
		<pubDate>Tue, 01 Sep 2009 16:39:50 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=283</guid>
		<description><![CDATA[输入10个数字，应用快速排序算法用c#实现
请用c#写出一个快速排序算法，要求输入10个整数，输出排序结果。
代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/283/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>输入10个数字，应用希尔排序算法用c#实现</title>
		<link>http://www.ajaxcn.net/archives/281</link>
		<comments>http://www.ajaxcn.net/archives/281#comments</comments>
		<pubDate>Tue, 01 Sep 2009 16:37:19 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=281</guid>
		<description><![CDATA[输入10个数字，应用希尔排序算法用c#实现
请用c#写出一个希尔排序算法，要求输入10个整数，输出排序结果。
代码如下：
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/281/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>输入10个数字，应用插入排序算法用c#实现</title>
		<link>http://www.ajaxcn.net/archives/270</link>
		<comments>http://www.ajaxcn.net/archives/270#comments</comments>
		<pubDate>Sun, 30 Aug 2009 15:50:48 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=270</guid>
		<description><![CDATA[输入10个数字，应用插入排序算法用c#实现
请用c#写出一个插入排序算法，要求输入10个整数，输出排序结果。
代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/270/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>输入10个数字，应用选择排序算法用c#实现</title>
		<link>http://www.ajaxcn.net/archives/268</link>
		<comments>http://www.ajaxcn.net/archives/268#comments</comments>
		<pubDate>Sun, 30 Aug 2009 15:47:26 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=268</guid>
		<description><![CDATA[输入10个数字，应用选择排序算法用c#实现

请用c#写出一个选择排序算法，要求输入10个整数，输出排序结果。
 代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/268/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>输入10个数字，应用鸡尾酒排序算法用c#实现</title>
		<link>http://www.ajaxcn.net/archives/264</link>
		<comments>http://www.ajaxcn.net/archives/264#comments</comments>
		<pubDate>Sun, 30 Aug 2009 15:17:55 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=264</guid>
		<description><![CDATA[输入10个数字，应用鸡尾酒排序算法用c#实现,请用c#写出一个鸡尾酒冒泡排序算法，要求输入10个整数，输出排序结果。代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/264/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>输入10个数字，应用冒泡排序算法用c#实现</title>
		<link>http://www.ajaxcn.net/archives/262</link>
		<comments>http://www.ajaxcn.net/archives/262#comments</comments>
		<pubDate>Sun, 30 Aug 2009 14:59:03 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=262</guid>
		<description><![CDATA[输入10个数字，应用冒泡排序算法用c#实现，请用c#写出一个冒泡排序算法，要求输入10个整数，输出排序结果。代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/262/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>张老师的生日问题C#算法实现</title>
		<link>http://www.ajaxcn.net/archives/243</link>
		<comments>http://www.ajaxcn.net/archives/243#comments</comments>
		<pubDate>Thu, 27 Aug 2009 16:59:06 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[生日问题]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=243</guid>
		<description><![CDATA[张老师生日问题答案9月1日，我记得好像还有个经理年龄问题，答案36岁，代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/243/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>设计递归算法x(x(8))需要调用几次函数x(int n)</title>
		<link>http://www.ajaxcn.net/archives/238</link>
		<comments>http://www.ajaxcn.net/archives/238#comments</comments>
		<pubDate>Thu, 27 Aug 2009 16:44:44 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[x(x(8))]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=238</guid>
		<description><![CDATA[设计递归算法x(x(8))需要调用几次函数x(int n)。只计算x(x(8))的自然是9,而现在求的调用几次函数x(int n)，把x(8)理解为一个二叉树。树的结点个数就是调用的次数。
x(8)的结果为9
x(x(8))也就是x(9)的二叉树形式。]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/238/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关于八皇后回溯算法c#实现</title>
		<link>http://www.ajaxcn.net/archives/233</link>
		<comments>http://www.ajaxcn.net/archives/233#comments</comments>
		<pubDate>Thu, 27 Aug 2009 16:37:12 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[八皇后回溯算法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=233</guid>
		<description><![CDATA[关于八皇后回溯算法c#实现
在一个8×8国际象棋盘上，有8个皇后，每个皇后占一格；要求皇后间不会出现相互“攻击”的现象，
即不能有两个皇后处在同一行、同一列或同一对角线上。问共有多少种不同的方法。代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/233/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关于fibonacci数列递归算法c#实现</title>
		<link>http://www.ajaxcn.net/archives/231</link>
		<comments>http://www.ajaxcn.net/archives/231#comments</comments>
		<pubDate>Thu, 27 Aug 2009 16:27:06 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[fibonacci数列]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=231</guid>
		<description><![CDATA[关于fibonacci数列递归算法c#实现

根据1，1，2，3，5，8，13，21，34..用c#递归写出算法,算出第30个数。
上述数据是fibonacci数列
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/231/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>九九乘法表简单算法（c#实现）</title>
		<link>http://www.ajaxcn.net/archives/229</link>
		<comments>http://www.ajaxcn.net/archives/229#comments</comments>
		<pubDate>Thu, 27 Aug 2009 16:23:51 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[数据结构与算法]]></category>
		<category><![CDATA[九九乘法]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=229</guid>
		<description><![CDATA[九九乘法表简单算法（用c#实现）,很简单的一个算法，无论学哪种语言都遇到的算法，代码如下：]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/229/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

