<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>“madongfly的天空” 的评论</title>
	<atom:link href="http://www.madongfly.cn/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.madongfly.cn</link>
	<description>Follow your heart, Lead your life!</description>
	<lastBuildDate>Wed, 28 Mar 2012 11:27:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>冰尘剑风 关于 给我留言 的评论</title>
		<link>http://www.madongfly.cn/leavemessage/comment-page-1#comment-2392</link>
		<dc:creator>冰尘剑风</dc:creator>
		<pubDate>Wed, 28 Mar 2012 11:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://madongfly.yo2.cn/?page_id=37987#comment-2392</guid>
		<description>第一次在豆瓣的链接上发现这样的牛人！我是一名在校大学生 ，想向你学习一下linux方面的东西！呵呵！</description>
		<content:encoded><![CDATA[<p>第一次在豆瓣的链接上发现这样的牛人！我是一名在校大学生 ，想向你学习一下linux方面的东西！呵呵！</p>
]]></content:encoded>
	</item>
	<item>
		<title>ctytc4457 关于 主动学习与半监督学习Active-learning and Semi-supervised learning 的评论</title>
		<link>http://www.madongfly.cn/articles/active-learning.html/comment-page-1#comment-2276</link>
		<dc:creator>ctytc4457</dc:creator>
		<pubDate>Tue, 14 Feb 2012 05:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.madongfly.cn/?p=38590#comment-2276</guid>
		<description>不错，转了</description>
		<content:encoded><![CDATA[<p>不错，转了</p>
]]></content:encoded>
	</item>
	<item>
		<title>ACMer感想帖/退役帖汇总 - ACM/ICPC信息站 关于 我的ACM生涯 的评论</title>
		<link>http://www.madongfly.cn/articles/%e6%88%91%e7%9a%84acm%e7%94%9f%e6%b6%af.html/comment-page-1#comment-2248</link>
		<dc:creator>ACMer感想帖/退役帖汇总 - ACM/ICPC信息站</dc:creator>
		<pubDate>Tue, 31 Jan 2012 13:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.madongfly.cn/?p=38797#comment-2248</guid>
		<description>[...] ikki@NJU&amp;HKUST http://bbs.byr.cn/#!article/ACM_ICPC/20151 madongfly@BJTU http://www.madongfly.cn/articles/%E6%88%91%E7%9A%84acm%E7%94%9F%E6%B6%AF.html qinz@XDU http://qinz.maybe.im/?p=56358 qus@SCUT [...]</description>
		<content:encoded><![CDATA[<p>[...] ikki@NJU&amp;HKUST <a href="http://bbs.byr.cn/#" rel="nofollow">http://bbs.byr.cn/#</a>!article/ACM_ICPC/20151 madongfly@BJTU <a href="http://www.madongfly.cn/articles/%E6%88%91%E7%9A%84acm%E7%94%9F%E6%B6%AF.html" rel="nofollow">http://www.madongfly.cn/articles/%E6%88%91%E7%9A%84acm%E7%94%9F%E6%B6%AF.html</a> qinz@XDU <a href="http://qinz.maybe.im/?p=56358" rel="nofollow">http://qinz.maybe.im/?p=56358</a> qus@SCUT [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>andi 关于 计算机中浮点数的舍入 的评论</title>
		<link>http://www.madongfly.cn/articles/floating_point_rounding.html/comment-page-1#comment-2200</link>
		<dc:creator>andi</dc:creator>
		<pubDate>Tue, 10 Jan 2012 08:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.madongfly.cn/?p=38845#comment-2200</guid>
		<description>是四舍五入。囧 精度问题。

int main() {
  printf(&quot;%.20lf %.2f\n&quot;, 0.015, 0.015);     // 0.01499999999999999900 0.01
  printf(&quot;%.20lf %.2f\n&quot;, 0.025, 0.025);     // 0.02500000000000000100 0.03
  printf(&quot;%.20lf %.2f\n&quot;, 0.035, 0.035);     // 0.03500000000000000300 0.04
  printf(&quot;%.20lf %.2f\n&quot;, 0.045, 0.045);     // 0.04499999999999999800 0.04
  printf(&quot;%.20lf %.2f\n&quot;, 0.055, 0.055);     // 0.05500000000000000000 0.06
  printf(&quot;%.20lf %.2f\n&quot;, 0.065, 0.065);     // 0.06500000000000000200 0.07
  printf(&quot;%.20lf %.2f\n&quot;, 0.075, 0.075);     // 0.07499999999999999700 0.07
  printf(&quot;%.20lf %.2f\n&quot;, 0.085, 0.085);     // 0.08500000000000000600 0.09
  printf(&quot;%.20lf %.2f\n&quot;, 0.095, 0.095);     // 0.09500000000000000100 0.10
  return EXIT_SUCCESS;
}</description>
		<content:encoded><![CDATA[<p>是四舍五入。囧 精度问题。</p>
<p>int main() {<br />
  printf(&#8220;%.20lf %.2f\n&#8221;, 0.015, 0.015);     // 0.01499999999999999900 0.01<br />
  printf(&#8220;%.20lf %.2f\n&#8221;, 0.025, 0.025);     // 0.02500000000000000100 0.03<br />
  printf(&#8220;%.20lf %.2f\n&#8221;, 0.035, 0.035);     // 0.03500000000000000300 0.04<br />
  printf(&#8220;%.20lf %.2f\n&#8221;, 0.045, 0.045);     // 0.04499999999999999800 0.04<br />
  printf(&#8220;%.20lf %.2f\n&#8221;, 0.055, 0.055);     // 0.05500000000000000000 0.06<br />
  printf(&#8220;%.20lf %.2f\n&#8221;, 0.065, 0.065);     // 0.06500000000000000200 0.07<br />
  printf(&#8220;%.20lf %.2f\n&#8221;, 0.075, 0.075);     // 0.07499999999999999700 0.07<br />
  printf(&#8220;%.20lf %.2f\n&#8221;, 0.085, 0.085);     // 0.08500000000000000600 0.09<br />
  printf(&#8220;%.20lf %.2f\n&#8221;, 0.095, 0.095);     // 0.09500000000000000100 0.10<br />
  return EXIT_SUCCESS;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>andi 关于 计算机中浮点数的舍入 的评论</title>
		<link>http://www.madongfly.cn/articles/floating_point_rounding.html/comment-page-1#comment-2199</link>
		<dc:creator>andi</dc:creator>
		<pubDate>Tue, 10 Jan 2012 08:02:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.madongfly.cn/?p=38845#comment-2199</guid>
		<description>其实这是printf函数故意设计成这样以符合人们的日常习惯的。 好像不是四舍五入吧。&quot;%.2f&quot;多试试。 囧</description>
		<content:encoded><![CDATA[<p>其实这是printf函数故意设计成这样以符合人们的日常习惯的。 好像不是四舍五入吧。&#8221;%.2f&#8221;多试试。 囧</p>
]]></content:encoded>
	</item>
	<item>
		<title>madongfly 关于 给我留言 的评论</title>
		<link>http://www.madongfly.cn/leavemessage/comment-page-1#comment-2055</link>
		<dc:creator>madongfly</dc:creator>
		<pubDate>Thu, 10 Nov 2011 07:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://madongfly.yo2.cn/?page_id=37987#comment-2055</guid>
		<description>&lt;a href=&quot;#comment-2049&quot; rel=&quot;nofollow&quot;&gt;@yangmeizhu &lt;/a&gt; 
你好，我自从毕业之后就没再碰数据挖掘的东西了。</description>
		<content:encoded><![CDATA[<p><a href="#comment-2049" rel="nofollow">@yangmeizhu </a><br />
你好，我自从毕业之后就没再碰数据挖掘的东西了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>yangmeizhu 关于 给我留言 的评论</title>
		<link>http://www.madongfly.cn/leavemessage/comment-page-1#comment-2049</link>
		<dc:creator>yangmeizhu</dc:creator>
		<pubDate>Mon, 07 Nov 2011 07:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://madongfly.yo2.cn/?page_id=37987#comment-2049</guid>
		<description>你好，看了你写的半监督和主动学习的文章，写得很好，很易懂，我现在也在做关于半监督和主动学习的研究，不知道你对这方面还有没有更深入的了解，能否交流交流啊</description>
		<content:encoded><![CDATA[<p>你好，看了你写的半监督和主动学习的文章，写得很好，很易懂，我现在也在做关于半监督和主动学习的研究，不知道你对这方面还有没有更深入的了解，能否交流交流啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>madongfly 关于 为求职事致谢 的评论</title>
		<link>http://www.madongfly.cn/articles/thanksforjobhuntingthings.html/comment-page-1#comment-2022</link>
		<dc:creator>madongfly</dc:creator>
		<pubDate>Wed, 26 Oct 2011 01:06:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.madongfly.cn/?p=38892#comment-2022</guid>
		<description>&lt;a href=&quot;#comment-1886&quot; rel=&quot;nofollow&quot;&gt;@zz &lt;/a&gt; 
不是，我只是和何子文本科同学。</description>
		<content:encoded><![CDATA[<p><a href="#comment-1886" rel="nofollow">@zz </a><br />
不是，我只是和何子文本科同学。</p>
]]></content:encoded>
	</item>
	<item>
		<title>zz 关于 为求职事致谢 的评论</title>
		<link>http://www.madongfly.cn/articles/thanksforjobhuntingthings.html/comment-page-1#comment-1886</link>
		<dc:creator>zz</dc:creator>
		<pubDate>Wed, 24 Aug 2011 14:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.madongfly.cn/?p=38892#comment-1886</guid>
		<description>何子文童鞋和何志坚大哥。莫非你也是江西东乡的？</description>
		<content:encoded><![CDATA[<p>何子文童鞋和何志坚大哥。莫非你也是江西东乡的？</p>
]]></content:encoded>
	</item>
	<item>
		<title>sumland 关于 为求职事致谢 的评论</title>
		<link>http://www.madongfly.cn/articles/thanksforjobhuntingthings.html/comment-page-1#comment-1877</link>
		<dc:creator>sumland</dc:creator>
		<pubDate>Fri, 05 Aug 2011 03:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.madongfly.cn/?p=38892#comment-1877</guid>
		<description>这么多强势公司，那你莫非牛人</description>
		<content:encoded><![CDATA[<p>这么多强势公司，那你莫非牛人</p>
]]></content:encoded>
	</item>
</channel>
</rss>

