C++
文章平均质量分 77
sunjx119
这个作者很懒,什么都没留下…
展开
-
[C++]千万小心局部变量
千万小心局部变量小心看好你的局部变量,尤其在这种情况下:当你在一个function中声明了一个对象,然后你不遗余力地在对这个对象进行加工、进行操作,辛苦半天将他作为结果传出。好,编译,没问题,你似乎心满意足。可是别高兴太早,运行一下试试,哦,my god,内存引用错误,操作系统奉上了个无比可爱的小红叉叉,可是你却恨不得把他“一百遍”了。你有过这种经历吗?恩,好,让我们看看下面这段足以产生这样效果的原创 2004-07-08 21:02:00 · 1603 阅读 · 0 评论 -
[C++]Google Code Jam中国竞赛原题解析[一]
Problem Statement You are given a string input. You are to find the longest substring of input such that the reversal of the substring is also a substring of input. In case of a tie, return the原创 2005-12-13 14:50:00 · 1536 阅读 · 0 评论