<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/csfkjy911" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/csfkjy911" type="application/rss+xml"></fs:self_link><lastBuildDate>Tue, 12 May 2009 12:08:00 GMT</lastBuildDate><title>csfkjy911的专栏</title><link>http://blog.csdn.net/csfkjy911/</link><item><title>手机来电通核心模块——归属地数据库设计（Winsym原创）</title><link>http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170600.aspx</link><wfw:comment>http://blog.csdn.net/csfkjy911/comments/4170600.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csfkjy911/comments/commentRss/4170600.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4170600</trackback:ping><description>水平不高，请大家见谅&lt;img src =&quot;http://blog.csdn.net/csfkjy911/aggbug/4170600.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/215423738/csfkjy911/csdn.net/s.gif?r=http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170600.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot;/&gt;</description><pubDate>Tue, 12 May 2009 20:08:00 +0800</pubDate><author>cs信息</author><comments>http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170600.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170600.aspx</guid><dc:creator>cs信息</dc:creator><fs:srclink>http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170600.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/csfkjy911/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/csfkjy911/~7392026/215423738/5501548</fs:itemid></item><item><title>最长递增子序列(原创)</title><link>http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170189.aspx</link><wfw:comment>http://blog.csdn.net/csfkjy911/comments/4170189.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csfkjy911/comments/commentRss/4170189.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4170189</trackback:ping><description>&lt;br /&gt;最长递增子序列【实验目的】&lt;br /&gt;1 掌握动态规划和LCS的相关算法&lt;br /&gt;2 利用动态规划的思想实现最长递增子序列&lt;br /&gt;3 分析实验结果，总结算法的时间和空间复杂度。思考是否能将算法的时间复杂度提高到O(nlgn)【系统环境】&lt;br /&gt;Windows XP 平台【实验工具】&lt;br /&gt;VC++6.0英文企业版【实验原理】（若涉及算法设计）&lt;br /&gt;描述： 随机生成小于等于n的自然数的一个序列，输出其最长递增子序列（任意一个即可）。&lt;br /&gt;       n 分别取 1000，3000，10000。&lt;br /&gt;例： n=5 随机序列为 5 1 4 2 3，正确输出为1 2 3，即长度为3的递增子序列。&lt;br /&gt;&lt;br /&gt;分析：&lt;br /&gt;1使用动态规划的前提条件：要求一个序列的最大递增子序列最优解问题可以转化为求其子问题的最优解问题，而且其子问题包含重叠的子问题比如此题1 2 3这个序列包含1 2这个序列，我们可以通过查找计算。(注意子序列可能不唯一)&lt;br /&gt;2 仿照LCS问题，a存放随机生成长度为n的数组元素。构造一个数组f，它的每一个值存放&lt;img src =&quot;http://blog.csdn.net/csfkjy911/aggbug/4170189.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/215423739/csfkjy911/csdn.net/s.gif?r=http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170189.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot;/&gt;</description><pubDate>Tue, 12 May 2009 18:43:00 +0800</pubDate><author>cs信息</author><comments>http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170189.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170189.aspx</guid><dc:creator>cs信息</dc:creator><fs:srclink>http://blog.csdn.net/csfkjy911/archive/2009/05/12/4170189.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/csfkjy911/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/csfkjy911/~7392026/215423739/5501548</fs:itemid></item><item><title>重磅推出团队原创代码，敬请期待，呵呵</title><link>http://blog.csdn.net/csfkjy911/archive/2009/04/25/4122457.aspx</link><wfw:comment>http://blog.csdn.net/csfkjy911/comments/4122457.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csfkjy911/comments/commentRss/4122457.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4122457</trackback:ping><description>WEB项目——网上商城 Symbian来电通开发&lt;img src =&quot;http://blog.csdn.net/csfkjy911/aggbug/4122457.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 25 Apr 2009 22:02:00 +0800</pubDate><author>cs信息</author><comments>http://blog.csdn.net/csfkjy911/archive/2009/04/25/4122457.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csfkjy911/archive/2009/04/25/4122457.aspx</guid><dc:creator>cs信息</dc:creator><fs:srclink>http://blog.csdn.net/csfkjy911/archive/2009/04/25/4122457.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/csfkjy911/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/csfkjy911/~7392026/215423740/5501548</fs:itemid></item><item><title>小弟的资源介绍</title><link>http://blog.csdn.net/csfkjy911/archive/2008/06/07/2520332.aspx</link><wfw:comment>http://blog.csdn.net/csfkjy911/comments/2520332.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csfkjy911/comments/commentRss/2520332.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2520332</trackback:ping><description>介绍本人的一些情况，欢迎大家联系交流，共同提高！！&lt;img src =&quot;http://blog.csdn.net/csfkjy911/aggbug/2520332.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 07 Jun 2008 23:29:00 +0800</pubDate><author>csfkjy911</author><comments>http://blog.csdn.net/csfkjy911/archive/2008/06/07/2520332.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csfkjy911/archive/2008/06/07/2520332.aspx</guid><dc:creator>csfkjy911</dc:creator><fs:srclink>http://blog.csdn.net/csfkjy911/archive/2008/06/07/2520332.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/csfkjy911/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/csfkjy911/~7392026/215423741/5501548</fs:itemid></item><item><title>固定资产管理系统（原创）</title><link>http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510616.aspx</link><wfw:comment>http://blog.csdn.net/csfkjy911/comments/2510616.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csfkjy911/comments/commentRss/2510616.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2510616</trackback:ping><description>固定资产管理系统（JBuilder2006+Sql2000）,软件说明。&lt;img src =&quot;http://blog.csdn.net/csfkjy911/aggbug/2510616.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 04 Jun 2008 21:29:00 +0800</pubDate><author>cs信息</author><comments>http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510616.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510616.aspx</guid><dc:creator>cs信息</dc:creator><fs:srclink>http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510616.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/csfkjy911/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/csfkjy911/~7392026/215423742/5501548</fs:itemid></item><item><title>RSA算法描述和代码（转载）</title><link>http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510517.aspx</link><wfw:comment>http://blog.csdn.net/csfkjy911/comments/2510517.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csfkjy911/comments/commentRss/2510517.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2510517</trackback:ping><description>RSA算法描述程序，转载。&lt;img src =&quot;http://blog.csdn.net/csfkjy911/aggbug/2510517.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 04 Jun 2008 21:13:00 +0800</pubDate><author>cs信息</author><comments>http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510517.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510517.aspx</guid><dc:creator>cs信息</dc:creator><fs:srclink>http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510517.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/csfkjy911/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/csfkjy911/~7392026/215423743/5501548</fs:itemid></item><item><title>RSA算法简单实现加密、解密、签名、验证（原创Java程序）</title><link>http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510294.aspx</link><wfw:comment>http://blog.csdn.net/csfkjy911/comments/2510294.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csfkjy911/comments/commentRss/2510294.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2510294</trackback:ping><description>在网友的RSA程序基础上，进行了三处重要的修改，并简单实现了加密、解密、签名、验证等功能。&lt;img src =&quot;http://blog.csdn.net/csfkjy911/aggbug/2510294.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 04 Jun 2008 20:01:00 +0800</pubDate><author>cs信息</author><comments>http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510294.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510294.aspx</guid><dc:creator>cs信息</dc:creator><fs:srclink>http://blog.csdn.net/csfkjy911/archive/2008/06/04/2510294.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/csfkjy911/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/csfkjy911/~7392026/215423744/5501548</fs:itemid></item></channel></rss>