由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问个面试问题
相关主题
问个algorithms in C的mergesort问题?[转载] What search method is used in exists()?
问个弱问题what's wrong with this scripts?variable passing?
请问有什么c++ algorithm and data structure 好的书吗?如何实现 strtok() ?
sort algorithmiterator and [], which is faster?
Algorithms and Data Structures那本比较好呢?一个C++的概念问题
Introduction to Algorithms | The MIT PressHow to read binary(data) file generated by Fortran in C/C++ (转载)
真心求助 .net c# 算法,数据结构书,网站多线程编程前景如何?
question about google algorithm/architecture (转载)关于inserter
相关话题的讨论汇总
话题: missing话题: design话题: sequential话题: algorithm话题: x2
进入Programming版参与讨论
1 (共1页)
m*******o
发帖数: 264
1
Design an algorithm to find the missing number in a set of sequential
numbers
就这一句话,没其他提示了,有什么思路吗?
P********e
发帖数: 2610
2
一个的话算总和
missing two的话,算平方?然后算和
3个电话,立方?

【在 m*******o 的大作中提到】
: Design an algorithm to find the missing number in a set of sequential
: numbers
: 就这一句话,没其他提示了,有什么思路吗?

g*********8
发帖数: 53
3
//missing two的话,算平方?然后算和
how to do that?
k****f
发帖数: 3794
4
假定从1开始的sequence。
x1 + x2 = n(n+1)/2 - \sum a_i
x1^2+x2^2=n(n+1)(2n+1)/6 - \sum a_i^2
解方程就是了。

【在 g*********8 的大作中提到】
: //missing two的话,算平方?然后算和
: how to do that?

K****n
发帖数: 5970
5
哦,又学了一招儿
k***r
发帖数: 4260
6
不懂呀。这个算法为什么好?
我想可以用对分法根据边界奇数偶数迅速找到那个missing number。

【在 k****f 的大作中提到】
: 假定从1开始的sequence。
: x1 + x2 = n(n+1)/2 - \sum a_i
: x1^2+x2^2=n(n+1)(2n+1)/6 - \sum a_i^2
: 解方程就是了。

1 (共1页)
进入Programming版参与讨论
相关主题
关于inserterAlgorithms and Data Structures那本比较好呢?
java可以直接去读txt file里指定的一行吗?Introduction to Algorithms | The MIT Press
多线程优化求助! (转载)真心求助 .net c# 算法,数据结构书,网站
c++: what is sequential container class?question about google algorithm/architecture (转载)
问个algorithms in C的mergesort问题?[转载] What search method is used in exists()?
问个弱问题what's wrong with this scripts?variable passing?
请问有什么c++ algorithm and data structure 好的书吗?如何实现 strtok() ?
sort algorithmiterator and [], which is faster?
相关话题的讨论汇总
话题: missing话题: design话题: sequential话题: algorithm话题: x2