<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>算法实现</title>
<link>http://new.chinaai.org/programming/algorithm/</link>
<description>程序设计 / 算法实现</description>
<language>zh-cn</language>
<generator><![CDATA[Copyright &amp;copy; 2003-2010 ChinaAI.org &lt;a href=&quot;http://www.chinaai.org&quot;&gt;中国人工智能网&lt;/a&gt; 版权所有]]></generator>
<webmaster>admin@ewbsite.com</webmaster>
<item>
    <title><![CDATA[ID3算法源代码]]></title>
    <link>http://new.chinaai.org/programming/algorithm/id3.html</link>
    <description><![CDATA[ID3算法的C语言源代码,是pdf格式,需要用pdf的文本选择工具选出。]]></description>
    <pubDate>2010-04-07</pubDate>
    <category>算法实现</category>
    <author>秩名</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[C++的BP算法源程序]]></title>
    <link>http://new.chinaai.org/programming/algorithm/cpp-bp.html</link>
    <description><![CDATA[本文给出了一个C++下面BP神经网络算法的源程序。]]></description>
    <pubDate>2010-04-06</pubDate>
    <category>算法实现</category>
    <author>秩名</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[Visual C++中的图像特效]]></title>
    <link>http://new.chinaai.org/programming/algorithm/vc-image-effect.html</link>
    <description><![CDATA[各种图形显示技巧，如图形的推拉、交错、雨滴状、百页窗、积木随机堆叠等显示模式在VC中的实现。]]></description>
    <pubDate>2010-04-06</pubDate>
    <category>算法实现</category>
    <author>icemanpro</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[A*算法求解最短路径]]></title>
    <link>http://new.chinaai.org/programming/algorithm/a-shortest-path.html</link>
    <description><![CDATA[关于A*算法求解最短路径的问题介绍, 给出了一个搜索最短路径的程序。]]></description>
    <pubDate>2010-03-29</pubDate>
    <category>算法实现</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[迷宫问题讨论--(递归)]]></title>
    <link>http://new.chinaai.org/programming/algorithm/maze-recursion.html</link>
    <description><![CDATA[讲述了迷宫问题从入口到出口的一条路径用递归求解的方法，包括算法描述和实现。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>iampolaris</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[迷宫问题讨论--(堆栈)]]></title>
    <link>http://new.chinaai.org/programming/algorithm/maze-stack.html</link>
    <description><![CDATA[讲述了迷宫问题从入口到出口的一条路径用堆栈求解的方法，包括算法描述和实现。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>iampolaris</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[人工智能学习(3)--广度优先搜索]]></title>
    <link>http://new.chinaai.org/programming/algorithm/breadth-first-search.html</link>
    <description><![CDATA[人工智能学习之广度优先搜索，给出了广度优先搜索算法的介绍和程序实现。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>iampolaris</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[人工智能学习(2)--八皇后问题]]></title>
    <link>http://new.chinaai.org/programming/algorithm/eight-queens-puzzle.html</link>
    <description><![CDATA[人工智能学习之八皇后问题，通过八皇后问题对递归算法做出进一步的了解。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>iampolaris</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[人工智能学习(1)--回溯策略]]></title>
    <link>http://new.chinaai.org/programming/algorithm/backtracking-strategy.html</link>
    <description><![CDATA[人工智能学习之回溯策略，讲述了用递归算法描述回溯控制下的产生式系统。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>iampolaris</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[八数码问题的A*算法解决方案及判定方法]]></title>
    <link>http://new.chinaai.org/programming/algorithm/a-eight-queens-puzzle.html</link>
    <description><![CDATA[用A*算法求解八数码问题的介绍、解决方案及判定方法。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>pkathlon@sina.com</author>
    <comments>本站原创</comments>
</item>
<item>
    <title><![CDATA[迷宫问题算法(优于递归,深度优先,广度优先)]]></title>
    <link>http://new.chinaai.org/programming/algorithm/maze-new.html</link>
    <description><![CDATA[作者提出的迷宫问题的新算法，并认为该算法优于递归、深度优先和广度优先搜索算法。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>天地之灵</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[八数码问题以及双向广度优先算法简述]]></title>
    <link>http://new.chinaai.org/programming/algorithm/eight-queens-puzzle-dbfs.html</link>
    <description><![CDATA[概述了广度优先算法及双向广度优先算法，并用该算法求解八数码问题的介绍。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>天地之灵</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[VC编程实现数字图像的边缘检测]]></title>
    <link>http://new.chinaai.org/programming/algorithm/vc-marginal-detection.html</link>
    <description><![CDATA[数字图像的边缘检测是图像分割、目标区域的识别、区域形状提取等图像分析领域十分重要的基础。本文向读者简单介绍一下这个技术，并给出了在Visual C++环境下实现的代码。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>刘涛</author>
    <comments>yesky</comments>
</item>
<item>
    <title><![CDATA[八皇后问题的高效解法-递归版]]></title>
    <link>http://new.chinaai.org/programming/algorithm/eight-queens-puzzle-recursion.html</link>
    <description><![CDATA[介绍了用递归算法求解八皇后问题的步骤和程序实现。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>佚名</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[五子棋的核心算法]]></title>
    <link>http://new.chinaai.org/programming/algorithm/gobang.html</link>
    <description><![CDATA[介绍了五子棋程序的数据结构、评分规则、胜负判断方法和搜索算法过程。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>佚名</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[决策树算法的系统实现与修剪优化]]></title>
    <link>http://new.chinaai.org/programming/algorithm/decision-tree.html</link>
    <description><![CDATA[本文以一个决策树算法的程序实现为例，进一步讨论了对树进行修剪优化时可能涉及的问题，目的在于给决策树研究人员提供一个深入和清晰的简化技术视图。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>佚名</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[VC实现对不同信号波形相似程度的判别]]></title>
    <link>http://new.chinaai.org/programming/algorithm/vc-wave-similarity.html</link>
    <description><![CDATA[本文介绍了利用相关对信号波形进行相似程度的判别方法。通过该技术可以对采集到的多种类型的数据信号间的相似度进行判别。本算法由Microsoft Visual C++ 6.0实现。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>佚名</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[C4.5介绍和源代码]]></title>
    <link>http://new.chinaai.org/programming/algorithm/c45.html</link>
    <description><![CDATA[关于C4.5算法的简要介绍、用户手册和源代码下载。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>P. Winston</author>
    <comments>网络</comments>
</item>
<item>
    <title><![CDATA[多层图像合成]]></title>
    <link>http://new.chinaai.org/programming/algorithm/image-synthesize.html</link>
    <description><![CDATA[多层图像的合成在实际开发中具有非常广泛的应用。本文给出了VC下的相关算法与实现。]]></description>
    <pubDate>2010-03-26</pubDate>
    <category>算法实现</category>
    <author>佚名</author>
    <comments>CSDN</comments>
</item>

</channel>
</rss>

