随笔分类 -  面试

摘要:这星期有点茫然,实习也没怎么找了,上星期那个公司给的要求让我花了几天时间看cocos2dx才搞完,做的确烂啊,以前总感觉这种2d的ge比较简单,没想到写起来还是好多不会。结果也是东西叫过去后被一顿打脸后没了下文。。。想着毕竟也是第一次写的,传上了留个念。源码地址http://pan.baidu.com/s/1mgNpJ2g 阅读全文
posted @ 2014-03-23 21:42 cavehubiao 阅读(120) 评论(0) 推荐(0)
摘要:preorder(node) if node == null then return visit(node) preorder(node.left) preorder(node.right)iterativePreorder(node) parentStack = empty stack parentStack.push(null) top = node while ( top != null ) visit( top ) if ( top.right != null ) parentStack.push(top.right) ... 阅读全文
posted @ 2014-03-19 13:38 cavehubiao 阅读(178) 评论(0) 推荐(0)
摘要:Twitter-Puddlequestion from:I Failed A Twitter Interview问题来自:《I Failed A Twitter Interview》译文:《我的Twitter技术面试失败了》译者:CuGBabyBeaRQuestion 题目简述:Note:* All the English description of question and logic of solution comes from original author.*注意:所有英文的关于问题、算法逻辑的描述都是来自原作者。"Consider the following pictur 阅读全文
posted @ 2013-11-02 19:47 cavehubiao 阅读(231) 评论(0) 推荐(0)