随笔分类 - Interview
摘要:第一轮 电话面试,纽约面试官,涉及binary search, completable future, volatile等很多concurrency的问题。 比如自己implement thread pool.最后题目是设计一个电梯的class 第二轮 onsite三小时。 第一轮 先是问了一些分布
阅读全文
摘要:Morgan Stanley Telephone interview merely consisting of questions on concurrency and garbage collection. Also some questions on collections and projec
阅读全文
摘要:1. Reserve a string in place https://www.codepuppet.com/2013/03/24/reversing-a-string-in-java-in-place/ 2. Write a method that convert decimal to bina
阅读全文
摘要:* Write an algorithm to Reverse Linked list. * Find an element in a NxM matrix of elements with partial "top-down + left-right" ordering. (divide & co
阅读全文
摘要:Attached are two useful technical prep documents. Work through these and go back through the Comp Sci/OO fundamentals. Also start to work through the
阅读全文
摘要:第一轮 网上测试,一共三道题,每一问都跟上一问有关,限时90mins。主要是考面向对象编程,字符串,正则表达式和数据结构的一些基础,感觉不难。有些点需要注意比如Java里对字符串 “MSN|QQ“ 进行split,需要 具体解释: https://stackoverflow.com/question
阅读全文
摘要:第一轮 电话面试,同时在code pad上做题,一边跟面试官讲解自己思路一边写代码。 第一题: 给定一个int,如果是power of 10就返回true,否则返回false。 用递归可以很轻松解决。 第二题: 给定一个数组和一个整数S,返回数组里相加等于S的所有整数对。 我最初用HashMap来存
阅读全文
摘要:第一轮 1. 笔试 30 mins 一共六道大题,前两题有4-5个小题。 第一道大题主要是考察Java Collections: a. LinkedList和ArrayList的区别 b. Set和List的区别 c. equals方法和hashCode方法的区别与联系 d. LinkedList更
阅读全文
摘要:堆的形状是一颗完全二叉树 public class B { public static B t1 = new B(); public static B t2 = new B(); { System.out.println("构造块"); } void hi () { System.out.print
阅读全文