由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - An algorithm question
相关主题
一道c++ 题, 找出duplicate numbersC# HtmlElement.InvokeMember at Amazon.com
又一道面试题,我是不是想多了?请问这道题怎么解决?
Re: amazon onsite interview question (转载)算法问题求教:字符串比较
一FG家常见题 (转载)[合集] how to remove duplicates from linked list?
Java 问题,请教如何找出一个array里的duplicate segments?验证一个问题的答案
问个构造函数的问题read a file and check if there's identical entry
[转载] CS Algorithm Interview questionc++问题
some interview questions i met and rememberedC++构造函数的问题
相关话题的讨论汇总
话题: algorithm话题: question话题: array话题: duplicated话题: any
进入Programming版参与讨论
1 (共1页)
M*S
发帖数: 459
1
Given an array t[100] which contains numbers between 1 and 99. Return the
duplicated value. Try both O(n) and O(n-square). Any idea how to do it?
Thanks a lot.
w***g
发帖数: 5958
2
全都加起来,然后减去(1+99)*99/2。

【在 M*S 的大作中提到】
: Given an array t[100] which contains numbers between 1 and 99. Return the
: duplicated value. Try both O(n) and O(n-square). Any idea how to do it?
: Thanks a lot.

M*S
发帖数: 459
3
This is O(n^2). I guess we might use hash table to find out the duplicated
number with O(n). Not sure if there is any other smart way to do it.

【在 w***g 的大作中提到】
: 全都加起来,然后减去(1+99)*99/2。
p*u
发帖数: 2454
4
这种文物级的问题还要问啊,另外用一个array b[100],initialize to -1。
if (b[a[i]] = -1) b[a[i]] = 1;
else cout << a[i] << "duplicate" << endl;
这个array就是一个特殊的hash table。

【在 M*S 的大作中提到】
: This is O(n^2). I guess we might use hash table to find out the duplicated
: number with O(n). Not sure if there is any other smart way to do it.

c*****t
发帖数: 1879
5
weak, add 或者 xor 不需要 extra space.

【在 p*u 的大作中提到】
: 这种文物级的问题还要问啊,另外用一个array b[100],initialize to -1。
: if (b[a[i]] = -1) b[a[i]] = 1;
: else cout << a[i] << "duplicate" << endl;
: 这个array就是一个特殊的hash table。

v******n
发帖数: 421
6
where's n in your input...

【在 M*S 的大作中提到】
: Given an array t[100] which contains numbers between 1 and 99. Return the
: duplicated value. Try both O(n) and O(n-square). Any idea how to do it?
: Thanks a lot.

p*u
发帖数: 2454
7
人家没说只有一个duplicate吧,也不知道谁weak

【在 c*****t 的大作中提到】
: weak, add 或者 xor 不需要 extra space.
c*****t
发帖数: 1879
8
the duplicate value :)

【在 p*u 的大作中提到】
: 人家没说只有一个duplicate吧,也不知道谁weak
1 (共1页)
进入Programming版参与讨论
相关主题
C++构造函数的问题Java 问题,请教如何找出一个array里的duplicate segments?
return value of a python function...问个构造函数的问题
Algorithm Question: Given an array and a sum value return[转载] CS Algorithm Interview question
一个 C++ STL base type 的问题some interview questions i met and remembered
一道c++ 题, 找出duplicate numbersC# HtmlElement.InvokeMember at Amazon.com
又一道面试题,我是不是想多了?请问这道题怎么解决?
Re: amazon onsite interview question (转载)算法问题求教:字符串比较
一FG家常见题 (转载)[合集] how to remove duplicates from linked list?
相关话题的讨论汇总
话题: algorithm话题: question话题: array话题: duplicated话题: any