摘要: Problem: Invert a binary tree. to Analysis: 1、helper function + recursion 一开始我用调用子函数,在子函数中递归的方式实现: 虽然解决了问题,但效率太低 2、recursion 进而将递归写入主函数中,并简化了部分代码 效率有所 阅读全文
posted @ 2016-10-24 12:23 SillyVicky 阅读(153) 评论(0) 推荐(0)
摘要: Problem: Given two strings s and t which consist of only lowercase letters. String t is generated by random shuffling string s and then add one more l 阅读全文
posted @ 2016-10-24 11:28 SillyVicky 阅读(140) 评论(0) 推荐(0)