码迷,mamicode.com
首页 >  
搜索关键字:amazon s3    ( 1902个结果
amazon 面经 5
http://www.geeksforgeeks.org/amazon-interview-set-105-campus/First PI:1. A brief discussion on my projects that I have done .2. One thing that I am mo...
分类:其他好文   时间:2014-08-10 15:35:10    阅读次数:302
amazon 面经4
Round 1(Bar Raiser):Complete discussion on my project.Suppose you have a file with billion entries and you have to sort the data of a file according t...
分类:其他好文   时间:2014-08-10 08:07:59    阅读次数:191
P163~
#include #include struct node { int data; struct node *next; }; typedef struct node MODETYPE; main() { MODETYPE s1,s2,s3,*begin,*p; s1.data=100; s2.data=200; s3.data=300; begin=&s1; s1.next=...
分类:其他好文   时间:2014-08-09 11:43:57    阅读次数:223
amazon 面经3
http://www.geeksforgeeks.org/amazon-interview-set-107/F2F-I:1) Brief discussion on work in current company2) Flatten linked list – http://www.geeksfor...
分类:其他好文   时间:2014-08-08 06:22:45    阅读次数:375
amazon 面经2
http://www.geeksforgeeks.org/amazon-interview-set-108-campus/F2F-1:1) Given a sorted circular link list and a pointer to random node, now insert a new...
分类:其他好文   时间:2014-08-08 04:18:25    阅读次数:248
Spring源码地址
2009-12-28 17:44今天想下载一下Spring的源代码,登录到Spring官网,傻眼了,根本找不到下载的地方!费了九牛二虎之力在网上找到了一个下载地址,记下来,免得下次再次傻找。http://s3.amazonaws.com/dist.springframework.org/releas...
分类:编程语言   时间:2014-08-07 21:50:50    阅读次数:219
amazon 面经1
1st round: 一个白人,先是聊了下project,然后一道coding题,找到距离一个节点k的所有节点。这个直接node bfs就可以解决。这一轮很基础。node bfs 加 count 计算level就行. facebook电面原题2nd round: 一个印度小伙,上来就是题,没有beh...
分类:其他好文   时间:2014-08-07 05:11:38    阅读次数:302
Interleaving String leetcode java
题目:Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.For example,Given:s1 = "aabcc",s2 = "dbbca",When s3 = "aadbbcbcac", r....
分类:编程语言   时间:2014-08-07 03:05:38    阅读次数:291
[LeetCode] Interleaving String(dp)
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.For example, Given: s1 = "aabcc", s2 = "dbbca",When s3 = "aadbbcbcac", re...
分类:其他好文   时间:2014-08-06 22:44:32    阅读次数:180
最长公共子序列LCS
LCS:给出两个序列S1和S2,求出的这两个序列的最大公共部分S3就是就是S1和S2的最长公共子序列了。公共部分必须是以相同的顺序出现,但是不必要是连续的。LCS具有最优子结构,且满足重叠子问题的性质。所以我们可以用动态规划来解决LCS问题。由LCS问题的最优子结构可得出递归式:参考代码:#incl...
分类:其他好文   时间:2014-08-06 22:19:42    阅读次数:204
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!