2014年(53)
发布时间:2014-12-14 20:32:59
当你进行Code Review的时候,你能很快发现问题吗?你能保证不遗留问题吗?下面是个Check List, 在Code Review结束后看一遍,查漏补缺,有助于吹毛求疵。以前在外企写的,懒得翻译了,大家凑合看吧:The code review check list1. Does the task/code for the right project?2. Does the task created co.........【阅读全文】
发布时间:2014-12-14 19:59:37
ARM核的中断支持重点引用了这篇文章:http://www.iti.uni-stuttgart.de/~radetzki/Seminar06/08_report.pdfARM处理器有7种操作模式User (usr) Normal program execution mode FIQ (fiq)Fast data processing modeIRQ (.........【阅读全文】
发布时间:2014-12-13 18:20:56
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.For example:Given the below binary tree and sum = 22, 5 / \ 4 8 .........【阅读全文】
发布时间:2014-12-13 17:52:36
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree and sum = 22, 5 / \ 4 8 / / \ 11 13 4 / \ .........【阅读全文】