由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - C的店面
相关主题
今天才整明白Permutation的最优解!?如何写内存速度最优化的string permutation?有重复字符
谁能猜猜,这是个什么 algorithm?问一个题目
菜鸟的问题:Given a string, find whether it has any permutation of another string谁能贴一下求nth permutation 和已知permutation 求rank的code
C++ Q66: reverse a string -- is it efficient谁能帮我写写这道题? print all permutations of a string
报一个F 家面经请教 怎样存下这个string
Permutation leetcode-T家电面面经并且不解为何被秒拒
Exposed上一道string permutation的题求问个G家面试题
Given a string, find all its permutations without any repetition?String permunation question (CS)
相关话题的讨论汇总
话题: string话题: mapping话题: map话题: char话题: cdlo
进入JobHunting版参与讨论
1 (共1页)
m***i
发帖数: 37
1
云公司的店面,不好。看来内功修为有待提高。
坎了20分钟project&research,这部分还行。
做题:
给一个String和map,
map里面有以string的每个char为key的mapping,value 是一列的char.
求这个string基于map的string permutation。
example:
cdlo
'c' -> ('C', 'x')
'l' -> ('L', '9')
'o' -> ('O')
'd' -> ('D')
==> CDLO, CD9O, xDLO, xD9O
这个做的还行。但是人家问,
1. 如果mapping不fit in memory,怎么办?
2. 假如mapping fit in memory, 但是可能很大,怎样才比较efficient?
我对于1的想法是根据string的每个char做hash partition, 分到不同的机器,map.
get 的时候从不同机器拿value,想想就知道十分不efficient;2没时间了。估计没戏。
发面经,攒人品。
c********p
发帖数: 1969
2
C 是什么?
J****3
发帖数: 427
3
Cloudera吧
P**********m
发帖数: 213
4
求包裹详情
m***i
发帖数: 37
5
云公司的店面,不好。看来内功修为有待提高。
坎了20分钟project&research,这部分还行。
做题:
给一个String和map,
map里面有以string的每个char为key的mapping,value 是一列的char.
求这个string基于map的string permutation。
example:
cdlo
'c' -> ('C', 'x')
'l' -> ('L', '9')
'o' -> ('O')
'd' -> ('D')
==> CDLO, CD9O, xDLO, xD9O
这个做的还行。但是人家问,
1. 如果mapping不fit in memory,怎么办?
2. 假如mapping fit in memory, 但是可能很大,怎样才比较efficient?
我对于1的想法是根据string的每个char做hash partition, 分到不同的机器,map.
get 的时候从不同机器拿value,想想就知道十分不efficient;2没时间了。估计没戏。
发面经,攒人品。
c********p
发帖数: 1969
6
C 是什么?
J****3
发帖数: 427
7
Cloudera吧
P**********m
发帖数: 213
8
求包裹详情
c*********n
发帖数: 1057
9
1. 如果mapping不fit in memory,怎么办?
2. 假如mapping fit in memory, 但是可能很大,怎样才比较efficient?
这两个问题怎么回答?
l*******n
发帖数: 101
10

if mapping takes too much space, then maybe we can store the char keys in a
search tree, and each key has a string consists of all its mapped values.
but instead it compromises accessing/insertion/deletion time

【在 m***i 的大作中提到】
: 云公司的店面,不好。看来内功修为有待提高。
: 坎了20分钟project&research,这部分还行。
: 做题:
: 给一个String和map,
: map里面有以string的每个char为key的mapping,value 是一列的char.
: 求这个string基于map的string permutation。
: example:
: cdlo
: 'c' -> ('C', 'x')
: 'l' -> ('L', '9')

1 (共1页)
进入JobHunting版参与讨论
相关主题
String permunation question (CS)报一个F 家面经
GOOG intern interview 题目Permutation leetcode-
【一个BB公司问的字母排序的问题】Exposed上一道string permutation的题
今天G家电面的一道题Given a string, find all its permutations without any repetition?
今天才整明白Permutation的最优解!?如何写内存速度最优化的string permutation?有重复字符
谁能猜猜,这是个什么 algorithm?问一个题目
菜鸟的问题:Given a string, find whether it has any permutation of another string谁能贴一下求nth permutation 和已知permutation 求rank的code
C++ Q66: reverse a string -- is it efficient谁能帮我写写这道题? print all permutations of a string
相关话题的讨论汇总
话题: string话题: mapping话题: map话题: char话题: cdlo