由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - What's the keyword for this approach?
相关主题
CS Master核心课程7选3 (转载)重新问个小白问题。
什么叫C++ Framework DevelopmentIn memory computing technology
一个哈希表问题Cost of a good computer
Check if the sum of two integers in an integer array eqauls to the given number 一个简单的小问题
面试题 -算法?请教 一个matlab画图的问题
两道M软件大公司的最新面世算法题 (转载)Matlab:如何在scatter plot里面的(x,y)位置插入位图?
a vba question. please help现在招工什么标准阿?
你们觉得computer sicence最核心的是哪几门课?能不能在hadoop中用open mpi?
相关话题的讨论汇总
话题: what话题: machine话题: approach话题: keyword话题: compute
进入Programming版参与讨论
1 (共1页)
c*****t
发帖数: 1879
1
Given a set of integers, you can distribute it to a network of computers
(2^n) and compute the sum in a pyrmid fashsion.
What is the name of this approach? Not map/reduce, but occurred much
earlier. Thanks.
t****t
发帖数: 6806
2
divide and conquer?

【在 c*****t 的大作中提到】
: Given a set of integers, you can distribute it to a network of computers
: (2^n) and compute the sum in a pyrmid fashsion.
: What is the name of this approach? Not map/reduce, but occurred much
: earlier. Thanks.

h****8
发帖数: 599
3
parallel programming ?
c*r
发帖数: 278
4
Scatter/Gather?

【在 c*****t 的大作中提到】
: Given a set of integers, you can distribute it to a network of computers
: (2^n) and compute the sum in a pyrmid fashsion.
: What is the name of this approach? Not map/reduce, but occurred much
: earlier. Thanks.

B*******g
发帖数: 1593
5
像是merge sort啊

【在 c*****t 的大作中提到】
: Given a set of integers, you can distribute it to a network of computers
: (2^n) and compute the sum in a pyrmid fashsion.
: What is the name of this approach? Not map/reduce, but occurred much
: earlier. Thanks.

c*****t
发帖数: 1879
6
感觉不是啊。

【在 t****t 的大作中提到】
: divide and conquer?
g*****g
发帖数: 34805
7
Dynamic programming? Use a pyramic to computer local optimum towards
overall optimum is commonly seen in DP.

【在 c*****t 的大作中提到】
: Given a set of integers, you can distribute it to a network of computers
: (2^n) and compute the sum in a pyrmid fashsion.
: What is the name of this approach? Not map/reduce, but occurred much
: earlier. Thanks.

c*****t
发帖数: 1879
8
Nope. Given 8 numbers, if we can distribute them to 4 machines,
we can compute the sum this way
1 (final round)
/ \
1 2 (second round)
/ \ / \
1 3 2 4 (first round)
That is, each machine compute sum of 2 values, then machine 3 send
value to machine 1, machine 4 send value to machine 2. In the last
round, machine 2 send value to machine 1 and compute the final result.

【在 g*****g 的大作中提到】
: Dynamic programming? Use a pyramic to computer local optimum towards
: overall optimum is commonly seen in DP.

p***o
发帖数: 1252
9
Parallel reduction? Google does return some relevant results with this
keyword.

【在 c*****t 的大作中提到】
: Nope. Given 8 numbers, if we can distribute them to 4 machines,
: we can compute the sum this way
: 1 (final round)
: / \
: 1 2 (second round)
: / \ / \
: 1 3 2 4 (first round)
: That is, each machine compute sum of 2 values, then machine 3 send
: value to machine 1, machine 4 send value to machine 2. In the last
: round, machine 2 send value to machine 1 and compute the final result.

1 (共1页)
进入Programming版参与讨论
相关主题
能不能在hadoop中用open mpi?面试题 -算法?
怎样generalize and commercialize一些in-house的程序两道M软件大公司的最新面世算法题 (转载)
C* summit promo code (50% off if you register by 07/15 which is today)a vba question. please help
[转载] CS Algorithm Interview question你们觉得computer sicence最核心的是哪几门课?
CS Master核心课程7选3 (转载)重新问个小白问题。
什么叫C++ Framework DevelopmentIn memory computing technology
一个哈希表问题Cost of a good computer
Check if the sum of two integers in an integer array eqauls to the given number 一个简单的小问题
相关话题的讨论汇总
话题: what话题: machine话题: approach话题: keyword话题: compute