原文:The top data structures you should know for your next coding interview 译者:Fundebug 为了保证可读性,本文采用意译而非直译。另外,本文版权归原作者所有,翻译仅用于学习。 1976年,一个瑞士计算机科学家写一本书《A ...
分类:
其他好文 时间:
2018-08-30 11:10:36
阅读次数:
193
Task schedule https://leetcode.com/problems/task-scheduler/solution/ https://github.com/tongzhang1994/Facebook-Interview-Coding/blob/master/Task%20sch... ...
分类:
其他好文 时间:
2018-08-17 01:20:10
阅读次数:
191
Sparse vector Multiplication https://github.com/tongzhang1994/Facebook-Interview-Coding/blob/master/Sparce%20Matrix%20Multiplication.java public class... ...
分类:
其他好文 时间:
2018-08-17 01:18:42
阅读次数:
212
https://www.youtube.com/watch?v=y240Qh9H9uk https://github.com/tongzhang1994/Facebook-Interview-Coding/blob/master/380.%20Insert%20Delete%20GetRandom%... ...
分类:
其他好文 时间:
2018-08-10 16:00:27
阅读次数:
130
124. Binary Tree Maximum Path Sum https://github.com/tongzhang1994/Facebook-Interview-Coding/blob/master/Longest%20Path%20in%20Binary%20Tree.java http ...
分类:
其他好文 时间:
2018-08-10 15:47:35
阅读次数:
131
Construct BST from preorder list https://www.geeksforgeeks.org/construct-bst-from-given-preorder-traversa/ https://github.com/tongzhang1994/Facebook-I... ...
分类:
其他好文 时间:
2018-08-09 19:24:51
阅读次数:
108
原题网址:https://www.lintcode.com/problem/k-sum/description 描述 给定n个不同的正整数,整数k(k < = n)以及一个目标数字。 在这n个数里面找出K个数,使得这K个数的和等于目标数字,求问有多少种方案? 描述 描述 给定n个不同的正整数,整数k ...
分类:
其他好文 时间:
2018-07-28 23:25:23
阅读次数:
226
package interview; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.List; /** * * @author * 计算数组中有... ...
分类:
编程语言 时间:
2018-07-26 15:10:17
阅读次数:
302
Data Structure Interview Questions A list of top frequently asked Data Structure interview questions and answers are given below. 1) What is Data Stru ...
分类:
其他好文 时间:
2018-07-22 20:01:17
阅读次数:
166
Spring Interview Questions 1) What is Spring? It is a lightweight, loosely coupled and integrated framework for developing enterprise applications in ...
分类:
编程语言 时间:
2018-07-22 18:43:25
阅读次数:
230