由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教个题
相关主题
求教一道面试题顶风上来问道题:一个很大char[], 如何in-place 删除重复元素
请问一道面试题How to solve this Interview question... thanks
一道算法题google scramble string O(n) 解法
MS intern 电面被拒,附上面试过程如何检查是否连续
google 面试题去掉单向链表中的重复元素 with O(n) time and O(1) (转载)
大公司算法题发uber电面面经,求onsite面经和建议
[discussion] how to approve that the given 9*9 is a sudokuBitmap是怎么回事啊?
求bitmap相关资料的推荐再问一道题
相关话题的讨论汇总
话题: duplicate话题: simplest话题: bitmap话题: 个题话题: hashtable
进入JobHunting版参与讨论
1 (共1页)
i******e
发帖数: 273
1
If you have numbers in a 10,000 item array that range from 1 to 1 million,
and there is one duplicate. How do you find the duplicate with the simplest
algorithm?
这题除了用hashtable和bitmap以外还有更好的方法吗? 谢谢
C***U
发帖数: 2406
2
排序算法呗。空间省了,时间多了。

simplest

【在 i******e 的大作中提到】
: If you have numbers in a 10,000 item array that range from 1 to 1 million,
: and there is one duplicate. How do you find the duplicate with the simplest
: algorithm?
: 这题除了用hashtable和bitmap以外还有更好的方法吗? 谢谢

i******e
发帖数: 273
3
bucket sort? 数组元素分布范围很大呀 1 ~ 1M.

【在 C***U 的大作中提到】
: 排序算法呗。空间省了,时间多了。
:
: simplest

K********m
发帖数: 31
4
基数排序

【在 i******e 的大作中提到】
: bucket sort? 数组元素分布范围很大呀 1 ~ 1M.
C***U
发帖数: 2406
5
bucket sort还不如用bitmap.两个思想一样的。用的空间更多。

【在 i******e 的大作中提到】
: bucket sort? 数组元素分布范围很大呀 1 ~ 1M.
1 (共1页)
进入JobHunting版参与讨论
相关主题
再问一道题google 面试题
median of N^2 numbers across N machines大公司算法题
请教一道算法题[discussion] how to approve that the given 9*9 is a sudoku
问道关于快速找bucket的面试题求bitmap相关资料的推荐
求教一道面试题顶风上来问道题:一个很大char[], 如何in-place 删除重复元素
请问一道面试题How to solve this Interview question... thanks
一道算法题google scramble string O(n) 解法
MS intern 电面被拒,附上面试过程如何检查是否连续
相关话题的讨论汇总
话题: duplicate话题: simplest话题: bitmap话题: 个题话题: hashtable