以下总结是以C++为例子。
面试基本点,数据结构,算法,OO design。把基础结构和思路准备好,万一遇到不会,也可以自己思考融汇贯通,然后就是大量练习leetcode, 面试的时候基本是拿上面的题考,很多思路自己想是想不出来的,比如sliding window解法解maximum subarray这种问题第一次想出来是大拿想了好些年,怎么指望在面试的时候10分钟给KO呢。一句话,刷题,熟能生巧也。
1. Array (vector)
2. LinkedList
3. Tree
4. Graph
5. Stack/Queue
6. Hash map
7. Heap
In C++ STL, there is priority queue which is a max heap.
PS: Adapter/Container in C++. Container is a data type in STL which can hold data. Adapter adapts a container and provides interface. 简单来说就是,container是STL定义的数据结构,而相应的adapter是这些数据结构的operations/interfaces. 比如在C里面普通的数据结构有array, 而stl有vector, stack, queue, 不然你就得自己去实现这些稍微高级点的数据结构。
一个很大路化的minHeap实现方法使用priority_queue, 因为priority_queue支持三种parameters, 你可以定义heap里面元素的类型,heap container的类型,以及是comparator, 虽然我还没太明白为啥这样的comparator就是minHeap了,懂的请留言指导我。。。暂且我就先这么用着了,万一刷题要用呢。
8. bit manipulation
持续更新ing...
Subscribe to:
Post Comments (Atom)
Leetcode 316. Remove Duplicate Letters
这道题表面问的是如何删除重复,实际在问如何从多个字符选取一个保留,从而让整个字符串按升序排列。那么策略就是对于高顺位的字符比如‘a',就要选靠前位置的保留,而低顺位字符如’z'则应该尽量选取靠后位置保留。 算法大概思路:每看到一个字符,我们要决定是否保留 1. ...
-
首先声明一下,这里的面试题主要所指数据结构和算法的题目,题目的分析集中在Leetcode上面的题目上。 我认为一道面试题由以下几个方面组成的 Question Data structure in question Data structure in solutio...
-
Given an array A of integer with size of n( means n books and number of pages of each book) and k people to copy the book. You must distribu...
-
1166. Design File System Medium 62 4 Add to List Share You are asked to design a file system which provides two functions: crea...
No comments:
Post a Comment