喜刷刷
Sunday, November 30, 2014
C++ Specific Questions - Overloading VS Overriding
›
Ref: http://stackoverflow.com/questions/429125/override-and-overload-in-c Overloading generally means that you have two or more functio...
Microsoft Onsite Interview Checklist
›
1. Resume preparation 2. Basic data structure/algorithm 3. Design question 4. Behavior question 5. C++ language specific question ...
2 comments:
基础data structure/algorithm列表
›
1. Implementation of stack/queue (array and linked list) Implement queue using array: circular array - when meet end, wrap around to the be...
面试中的clarifying questions
›
面试题经常有意无意字面上很含糊,这个时候一定需要和面世官交流搞清楚确切的意思。总结一下每个topic需要澄清的地方: 1. Array: (1) Sorted or not? (2) How many elements? (3) Element type? I...
Saturday, November 29, 2014
[LeetCode] Wildcard Matching
›
Implement wildcard pattern matching with support for '?' and '*' . '?' Matches any single character. '*'...
3 comments:
[LeetCode] Regular Expression Matching
›
Implement regular expression matching with support for '.' and '*' . '.' Matches any single character. '*...
8 comments:
Thursday, November 27, 2014
[LeetCode] Max Points on a Line
›
Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. 思路: 解这个平面几何题有3个要点: 1. 如何判断共...
1 comment:
›
Home
View web version