由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Find non-repeat char in a string
相关主题
MS intern 电面被拒,附上面试过程O(N) sort integer array
顶风上来问道题:一个很大char[], 如何in-place 删除重复元素同学今天面AMAZON到一个题目不会 问我。我来这问一下
find k missing numbers in range [0, N].subset
请教一个面试题A家FAILED掉了,看来银行也没戏了。问了一算法题
L一个电面题找工作求推荐,最好是湾区
Apple第一轮电话面试问个memory limits的题
大公司算法题请问:C++里一般用什么做hashtable?
一道Bloomberg 面试题问一个经典题目
相关话题的讨论汇总
话题: space话题: find话题: char话题: repeat话题: string
进入JobHunting版参与讨论
1 (共1页)
b********e
发帖数: 693
1
without using any space
the time complex is O(N), and space is O(1)
how to do it?
K******g
发帖数: 1870
2
hash,the space is still O(1).

【在 b********e 的大作中提到】
: without using any space
: the time complex is O(N), and space is O(1)
: how to do it?

b********e
发帖数: 693
3
based on one guy's interview, Amazon denied the hash solution.
any other solution?

【在 K******g 的大作中提到】
: hash,the space is still O(1).
d**e
发帖数: 6098
4
可不可以说说hash怎么做?谢谢

【在 b********e 的大作中提到】
: based on one guy's interview, Amazon denied the hash solution.
: any other solution?

f*********5
发帖数: 576
5
can below be considered as O(1) space?
char array or bitmap which can support 256 different situations?

【在 b********e 的大作中提到】
: without using any space
: the time complex is O(N), and space is O(1)
: how to do it?

1 (共1页)
进入JobHunting版参与讨论
相关主题
问一个经典题目L一个电面题
Find first non-repeating char怎么做?Apple第一轮电话面试
写程序时的一个小问题?大公司算法题
leetcode的Longest Substring Without Repeating Characters解法好麻烦啊一道Bloomberg 面试题
MS intern 电面被拒,附上面试过程O(N) sort integer array
顶风上来问道题:一个很大char[], 如何in-place 删除重复元素同学今天面AMAZON到一个题目不会 问我。我来这问一下
find k missing numbers in range [0, N].subset
请教一个面试题A家FAILED掉了,看来银行也没戏了。问了一算法题
相关话题的讨论汇总
话题: space话题: find话题: char话题: repeat话题: string