Sunday, July 19, 2015

MUST READ BOOKS FOR TECHNICAL INTERVIEW



Coding Questions:
Cracking the Coding Interview: 189 Programming Questions and Solutions


Build Your Resume:
The Google Resume: How to Prepare for a Career and Land a Job at Apple, Microsoft, Google, or any Top Tech Company


Algorithm and Data Structure Basics:
Introduction to Algorithms


Operating System:
Operating System Concepts


Start Up:
The Start-up of You: Adapt to the Future, Invest in Yourself, and Transform Your Career




No comments:

Post a Comment

Leetcode 316. Remove Duplicate Letters

 这道题表面问的是如何删除重复,实际在问如何从多个字符选取一个保留,从而让整个字符串按升序排列。那么策略就是对于高顺位的字符比如‘a',就要选靠前位置的保留,而低顺位字符如’z'则应该尽量选取靠后位置保留。 算法大概思路:每看到一个字符,我们要决定是否保留 1. ...