由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 最近面试碰到的题目
相关主题
问一下prefix tree (trie) 的题目finds all repeated substrings in the string --- YAHOO interview question
面试题:写一个猜单词策略这里牛人多,给大家来个算法的问题
Groupon 2面 面经Bloomberg 一道题
Zenefits面经新鲜onsite面经
发一个fb面经那个 google hint words 的老题
求助一面试题什么时候用SUFFIX TREE,什么时候用TRIE
一道MS题问个google老题的最佳解法
How to solve this problem?How to design google search suggestion?
相关话题的讨论汇总
话题: trie话题: parsing话题: prefix话题: word话题: 题目
进入JobHunting版参与讨论
1 (共1页)
b******c
发帖数: 70
1
碰到的题目都不难
prefix tree parsing
link list sorting
TRIE
matrix find word
utf8 format decoding
design a data structure to return array numbers in random order so that the
possibility will be proportional to the value of the number, also support
fast update numbers
some kind of word parsing and processing
还有一些小题目
基本上那本算法课本书看看,然后复习复习班上的题目,再加上看看leetcode,就差不
多了,当然,多想想可以怎么优化,变形什么的
m***n
发帖数: 2154
2
....这些题目一点都不容易啊。。
d****o
发帖数: 1055
3
大牛

the

【在 b******c 的大作中提到】
: 碰到的题目都不难
: prefix tree parsing
: link list sorting
: TRIE
: matrix find word
: utf8 format decoding
: design a data structure to return array numbers in random order so that the
: possibility will be proportional to the value of the number, also support
: fast update numbers
: some kind of word parsing and processing

B******5
发帖数: 4676
4
基本上,然后,再。。。

the

【在 b******c 的大作中提到】
: 碰到的题目都不难
: prefix tree parsing
: link list sorting
: TRIE
: matrix find word
: utf8 format decoding
: design a data structure to return array numbers in random order so that the
: possibility will be proportional to the value of the number, also support
: fast update numbers
: some kind of word parsing and processing

b******c
发帖数: 70
5
OK,你还要多练,呵呵

【在 m***n 的大作中提到】
: ....这些题目一点都不容易啊。。
m***n
发帖数: 2154
6
呵呵,这些题目随便去MGAF找个人,如果没见过原题,给他30分钟做不出来的多了。
这种无信息含量的帖子,也不会有人真的去看。

【在 b******c 的大作中提到】
: OK,你还要多练,呵呵
b******c
发帖数: 70
7
都是比较基本的东西啊,没有什么其他details了
你要说谁便找个人,是不一定做得出来,但是我想他们进这些公司面试的时候还是作的
出来的

【在 m***n 的大作中提到】
: 呵呵,这些题目随便去MGAF找个人,如果没见过原题,给他30分钟做不出来的多了。
: 这种无信息含量的帖子,也不会有人真的去看。

d****o
发帖数: 1055
8
prefix tree parsing
TRIE
matrix find word
utf8 format decoding
这几个能不能展开说怎么考的?具体输入输出。

the

【在 b******c 的大作中提到】
: 碰到的题目都不难
: prefix tree parsing
: link list sorting
: TRIE
: matrix find word
: utf8 format decoding
: design a data structure to return array numbers in random order so that the
: possibility will be proportional to the value of the number, also support
: fast update numbers
: some kind of word parsing and processing

h**i
发帖数: 431
9
楼主具体点

the

【在 b******c 的大作中提到】
: 碰到的题目都不难
: prefix tree parsing
: link list sorting
: TRIE
: matrix find word
: utf8 format decoding
: design a data structure to return array numbers in random order so that the
: possibility will be proportional to the value of the number, also support
: fast update numbers
: some kind of word parsing and processing

p*****2
发帖数: 21240
10

the
prefix tree 就是TRIE吧? 两者有区别吗?

【在 b******c 的大作中提到】
: 碰到的题目都不难
: prefix tree parsing
: link list sorting
: TRIE
: matrix find word
: utf8 format decoding
: design a data structure to return array numbers in random order so that the
: possibility will be proportional to the value of the number, also support
: fast update numbers
: some kind of word parsing and processing

b******c
发帖数: 70
11
oh, sorry, it is prefix representation parsing, like * 5 - 6 2

【在 p*****2 的大作中提到】
:
: the
: prefix tree 就是TRIE吧? 两者有区别吗?

b******c
发帖数: 70
12
prefix representation parsing, like * 5 - 6 2
Trie, write the Trie data structure, insert, find, and some optimization
matrx one, give a matrix of chars, find a word
utf8 is an encoding where first or first several bits representing how many
bytes used for a character, asked to verify whether it is valid foramt

【在 d****o 的大作中提到】
: prefix tree parsing
: TRIE
: matrix find word
: utf8 format decoding
: 这几个能不能展开说怎么考的?具体输入输出。
:
: the

N*****8
发帖数: 253
13
prefix tree不就是trie吗?
我当时还被考到过matrix find word的问题,之前没看到过,当场楞了一下然后先谢了
一个brute force的,然后被面试官提醒用trie来优化。
P***P
发帖数: 1387
14
如果面试有人问这些问题,明显是被整了

the

【在 b******c 的大作中提到】
: 碰到的题目都不难
: prefix tree parsing
: link list sorting
: TRIE
: matrix find word
: utf8 format decoding
: design a data structure to return array numbers in random order so that the
: possibility will be proportional to the value of the number, also support
: fast update numbers
: some kind of word parsing and processing

1 (共1页)
进入JobHunting版参与讨论
相关主题
How to design google search suggestion?发一个fb面经
问一个boggle题的扩展求助一面试题
G家面题一道MS题
单词提示是怎么实现的?How to solve this problem?
问一下prefix tree (trie) 的题目finds all repeated substrings in the string --- YAHOO interview question
面试题:写一个猜单词策略这里牛人多,给大家来个算法的问题
Groupon 2面 面经Bloomberg 一道题
Zenefits面经新鲜onsite面经
相关话题的讨论汇总
话题: trie话题: parsing话题: prefix话题: word话题: 题目