<?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/csufuyi" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/csufuyi" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 12 Nov 2008 22:43:00 GMT</lastBuildDate><title>煮石</title><description>——计算机学习体会</description><link>http://blog.csdn.net/csufuyi/</link><item><title>纪念找工作的日子</title><link>http://blog.csdn.net/csufuyi/archive/2008/11/12/3285743.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/3285743.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/3285743.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3285743</trackback:ping><description>&lt;br /&gt;    从2008年10月9日淘宝网在中南的第一场笔试，到2008年11月6日在慎重思考之后，选择中兴通讯(深圳)，这是一段难忘的日子。此时时刻，很多公司的招聘仍然在如火如荼的进行着，趁着激情仍在，记录下这段心路历程，希望能对学弟学妹们求职有所帮助。我把整个求职的准备过程分为战略上的准备和战术上的准备,所投职位全部为软件研发类，投其它职位的仅供参考。&lt;br /&gt;战略篇&lt;br /&gt;2008年5月份，完全搞定了小论文，开始制定找工作的战略规划。由于我研究课题方向是偏理论，已经有接近两年的时间没有做过大的实践项目了。日常所做的工作多为阅读英文论文，讨论其中的问题，提出改进方案，做模拟实验。因此计算机基础知识和C/C++方面的编程能力软不如本科阶段大四保研的时候。我心里很着急，决定5月到9月这段时间一定要狠补充基础，充实项目经验。&lt;br /&gt;首先花了几天时间做了份简历挂在51job上，没想到后来居然还收到了几个电话通知我去面试，最后很偶然的选择了广州的一家公司,花了两个月的时间完成了一个C/C++项目，工作的同时每天晚上复习林锐的《C/C++高质量程序设计》第三版。这本书很早就在网&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/3285743.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 13 Nov 2008 06:43:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/11/12/3285743.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/11/12/3285743.aspx</guid><dc:creator>csufuyi</dc:creator></item><item><title>不带头节点链表逆序的两种方法</title><link>http://blog.csdn.net/csufuyi/archive/2008/11/01/3199717.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/3199717.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/3199717.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3199717</trackback:ping><description>&lt;br /&gt;公司笔试或面试常考这一点。&lt;br /&gt;递归解法如下：&lt;br /&gt;node* reverse(node * head)&lt;br /&gt;{&lt;br /&gt; if(head==NULL || head-&gt;next==NULL)&lt;br /&gt;  return head;&lt;br /&gt; node* tail= head-&gt;next;&lt;br /&gt; node* newHead= reverse(head-&gt;next);&lt;br /&gt; tail-&gt;next=head;&lt;br /&gt; head-&gt;next=NULL;&lt;br /&gt; return newHead;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;非递归三指针解法如下：&lt;br /&gt;node* reverse(node * head)&lt;br /&gt;{&lt;br /&gt; if(head==NULL || head-&gt;next==NULL)&lt;br /&gt;  return head;&lt;br /&gt; node *p1, *p2, *p3;&lt;br /&gt; p1=head;&lt;br /&gt; p2=head-&gt;next;&lt;br /&gt; head-&gt;next=NULL;&lt;br /&gt; while&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/3199717.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 01 Nov 2008 17:16:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/11/01/3199717.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/11/01/3199717.aspx</guid><dc:creator>csufuyi</dc:creator></item><item><title>淘宝09笔试题C++相关</title><link>http://blog.csdn.net/csufuyi/archive/2008/10/10/3048806.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/3048806.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/3048806.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3048806</trackback:ping><description>&lt;br /&gt;&lt;br /&gt; int a[3][2]={1,2,3,4,5,6},*p[3];&lt;br /&gt; p[0]=a[1];&lt;br /&gt;求输出结果：&lt;br /&gt; cout&lt;br /&gt;容易犯错的地方，误把p[0]看成指向一维数组的指针&lt;br /&gt;扩展思考：&lt;br /&gt; cout&lt;br /&gt; cout&lt;br /&gt;进一步思考：&lt;br /&gt;举例，以下等价的表达：&lt;br /&gt; int a[5][3]={11,28,-5,45,90,35,23,19,0,0,34,56,-35,24,-40};&lt;br /&gt; cout&lt;br /&gt; cout&lt;br /&gt; cout&lt;br /&gt; cout&lt;br /&gt; cout&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/3048806.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 10 Oct 2008 19:21:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/10/10/3048806.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/10/10/3048806.aspx</guid><dc:creator>csufuyi</dc:creator></item><item><title>淘宝09和百度07年的一道编程题</title><link>http://blog.csdn.net/csufuyi/archive/2008/10/10/3048087.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/3048087.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/3048087.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3048087</trackback:ping><description>实现一个函数，对一个正整数n,算得到1需要的最少操作次数：
如果n为偶数，将其处以2；
如果n为奇数，可以加1或减1；
一直处理下去。
例子：  61
             60
             30
             15
             16
             8
             4
             2
             1 

解法如下，欢迎探讨！
int step(int n)
{
	int count=0;
	cout&gt;= 1;
			cout&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/3048087.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 10 Oct 2008 18:04:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/10/10/3048087.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/10/10/3048087.aspx</guid><dc:creator>csufuyi</dc:creator></item><item><title>(转)A Memory-Efficient Doubly Linked List</title><link>http://blog.csdn.net/csufuyi/archive/2008/09/21/2958825.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/2958825.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/2958825.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2958825</trackback:ping><description>&lt;br /&gt;In the quest to make small devices cost effective, manufacturers often need to think about reducing the memory size. One option is to find alternative implementations of the abstract data types (ADTs) we are used to for our day-to-day implementations. One such ADT is a doubly linked list structure. &lt;br /&gt;In this article, I present a conventional implementation and an alt&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/2958825.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 22 Sep 2008 06:42:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/09/21/2958825.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/09/21/2958825.aspx</guid><dc:creator>csufuyi</dc:creator></item><item><title>C复习笔记(7)-7.4</title><link>http://blog.csdn.net/csufuyi/archive/2008/07/04/2612979.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/2612979.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/2612979.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2612979</trackback:ping><description>trailing blank chars&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/2612979.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jul 2008 07:07:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/07/04/2612979.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/07/04/2612979.aspx</guid><dc:creator>csufuyi</dc:creator></item><item><title>C复习笔记(7)-7.4</title><link>http://blog.csdn.net/csufuyi/archive/2008/07/04/2612978.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/2612978.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/2612978.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2612978</trackback:ping><description>trailing blank chars&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/2612978.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 05 Jul 2008 07:06:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/07/04/2612978.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/07/04/2612978.aspx</guid><dc:creator>csufuyi</dc:creator></item><item><title>C复习笔记(6)-6.24</title><link>http://blog.csdn.net/csufuyi/archive/2008/06/24/2583863.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/2583863.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/2583863.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2583863</trackback:ping><description>c study&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/2583863.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 25 Jun 2008 07:05:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/06/24/2583863.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/06/24/2583863.aspx</guid><dc:creator>csufuyi</dc:creator></item><item><title>C复习笔记(5)-6.23</title><link>http://blog.csdn.net/csufuyi/archive/2008/06/23/2580526.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/2580526.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/2580526.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2580526</trackback:ping><description>c study&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/2580526.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 24 Jun 2008 07:06:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/06/23/2580526.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/06/23/2580526.aspx</guid><dc:creator>csufuyi</dc:creator></item><item><title>C复习笔记(4)-6.20</title><link>http://blog.csdn.net/csufuyi/archive/2008/06/20/2570893.aspx</link><wfw:comment>http://blog.csdn.net/csufuyi/comments/2570893.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/csufuyi/comments/commentRss/2570893.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2570893</trackback:ping><description>c study&lt;img src =&quot;http://blog.csdn.net/csufuyi/aggbug/2570893.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 21 Jun 2008 06:51:00 +0800</pubDate><author>csufuyi</author><comments>http://blog.csdn.net/csufuyi/archive/2008/06/20/2570893.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/csufuyi/archive/2008/06/20/2570893.aspx</guid><dc:creator>csufuyi</dc:creator></item></channel></rss>