摘要: Which of following C++ code is correct ?A.int f(){ int *a = new int(3); return *a;}B.int *f(){ int a[3] = {1,2,3}; return a;}C.vector f(){ vecto... 阅读全文
posted @ 2015-04-09 20:29 BestWangJie 阅读(104) 评论(0) 推荐(0) 编辑
摘要: There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be ... 阅读全文
posted @ 2015-04-09 19:17 BestWangJie 阅读(119) 评论(0) 推荐(0) 编辑