由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - [合集] 一个数据结构问题求教
相关主题
[合集] who can help me with this assembly code?n*(n-1)*(n+1)/3 re:一个数据结构中的数学求和问题求教 (转载)
求助一个数据结构的求时间复杂度问题用pseudo-code 写数据结构问题。
一个数据结构中的数学求和问题求教 (转载)问一个数据结构面试问题
[合集] 有谁用computer organization and design上过system architectu请构造个数据结构,满足:
一个哈希表问题求教social network的一个简单问题
Check if the sum of two integers in an integer array eqauls to the given number [合集] 一个数据结构问题
面试题 -算法?请推荐讲算法和数据结构的好书!
两道M软件大公司的最新面世算法题 (转载)问问Bitmap的问题
相关话题的讨论汇总
话题: integer话题: max话题: div话题: m1话题: m2
进入Programming版参与讨论
1 (共1页)
c***d
发帖数: 996
1
☆─────────────────────────────────────☆
tennisalways (tennisforever) 于 (Sat Jan 20 11:31:12 2007) 提到:
Here is a function max(i,n) that returns the largest element in positions i
through i+n-1 of an integer array A. You may assume for convenience that n
is a power of 2.
function max (i,n: integer):integer;
var
m1,m2:integer;
begin
if n=1 then
return (A[i])
else begin
m1:=max(i, n div 2);
m2:=max(i + n div 2, n div 2);
1 (共1页)
进入Programming版参与讨论
相关主题
问问Bitmap的问题一个哈希表问题
vector< vector > > 怎么初始化?Check if the sum of two integers in an integer array eqauls to the given number
阅读Robert Sedgewick的"algorithms in C"的感受面试题 -算法?
请问stl里面的vector, map, set都是用什么数据结构实现的两道M软件大公司的最新面世算法题 (转载)
[合集] who can help me with this assembly code?n*(n-1)*(n+1)/3 re:一个数据结构中的数学求和问题求教 (转载)
求助一个数据结构的求时间复杂度问题用pseudo-code 写数据结构问题。
一个数据结构中的数学求和问题求教 (转载)问一个数据结构面试问题
[合集] 有谁用computer organization and design上过system architectu请构造个数据结构,满足:
相关话题的讨论汇总
话题: integer话题: max话题: div话题: m1话题: m2