
笔试面试
文章平均质量分 57
lilongmark
Work hard. Have fun. Make history.
展开
-
面试常备程序 — 字符串篇
1 strcmp int strcmp(const char* s1, const char* s2) { while(*s1 && (*s1==*s2)) s1++,s2++; return *(const unsigned char*)s1-*(const unsigned char*)s2; }原创 2014-05-09 15:59:39 · 1039 阅读 · 0 评论 -
面试10大算法汇总+常见题目解答(Java)
原文地址:http://www.programcreek.com/2012/12/%E9%9D%A2%E8%AF%9510%E5%A4%A7%E7%AE%97%E6%B3%95%E6%B1%87%E6%80%BB%EF%BC%8B%E5%B8%B8%E8%A7%81%E9%A2%98%E7%9B%AE%E8%A7%A3%E7%AD%94/转载 2014-04-10 17:05:21 · 11703 阅读 · 0 评论