--
发布时间:2013-12-25 19:31:13
题目:字符串常用操作(持续增加....)分析:主要考察指针操作,小心边界溢出、越界等问题代码:点击(此处)折叠或打开/****************************************************************************** Copyright (C), 2001-2011, HW Tech. Co., .........【阅读全文】
发布时间:2013-12-25 19:22:49
题目:Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.分析:从头开始记录每个字母出现次数.........【阅读全文】
发布时间:2013-12-10 09:23:03
http://blog.sina.com.cn/s/blog_a459dcf50101e8e9.html 在系统开发过程中出现的bug相对而言是比较好解决的,花费在这个上面的调试代价不是很大,但是在系统集成后的bug往往是难以定位的bug(最好方式是打桩,通过打桩可以初步锁定出错的位置,如:进入函数前打印日志,离开时再次打印日志)。而这些难以定位的bug基.........【阅读全文】