分享
 
 
 

20世纪十大算法

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

BBS 水木清华站 -- 精华区文章阅读

--------------------------------------------------------------------------------

发信人: rao (绕绕,the Interview with GOD), 信区: NumComp

标 题: [合集] 20世纪十大算法(English,哪位大侠翻译一下吧)

发信站: BBS 水木清华站 (Wed Jul 16 01:44:49 2003), 站内

☆─────────────────────────────────────☆

neco (我是猫) 于 (Sat Jul 12 12:29:47 2003) 提到:

By Barry A. Cipra

Algos is the Greek word for pain. Algor is Latin, to be cold. Neither is

the root for algorithm, which stems instead from al-

Khwarizmi, the name of the ninth-century Arab scholar whose book al-jabr

wa’l muqabalah devolved into today’s high school

algebra textbooks. Al-Khwarizmi stressed the importance of methodical

procedures for solving problems. Were he around today,

he’d no doubt be impressed by the advances in his eponymous approach.

Some of the very best algorithms of the computer age are highlighted

in the January/February 2000 issue of Computing in Science &

Engineering, a joint publication of the American Institute of Physics

and the IEEE Computer Society. Guest editors Jack Don-garra of the

University of Tennessee and Oak Ridge National Laboratory and Fran-cis

Sullivan of the Center for Comput-ing Sciences at the Institute for

Defense Analyses put togeth-er a list they call the “Top Ten Algorithms

of the Century.”

“We tried to assemble the 10 al-gorithms with the greatest influence on

the development and practice of science and engineering in the 20th

century,” Dongarra and Sullivan write. As with any top-10 list, their

selections—and non-selections—are bound to be controversial, they

acknowledge. When it comes to picking the algorithmic best, there

seems to be no best algorithm.

Without further ado, here’s the CiSE top-10 list, in chronological

order. (Dates and names associated with the algorithms should be read as

first-order approximations. Most algorithms take shape over time,

with many contributors.)

1.

1946: John von Neumann, Stan Ulam, and Nick Metropolis, all at the Los

Alamos Scientific Laboratory, cook up the Metropolis

algorithm, also known as the Monte Carlo method.

The Metropolis algorithm aims to obtain approximate solutions to

numerical problems with unmanageably many degrees of freedom

and to combinatorial problems of factorial size, by mimicking a random

process. Given the digital computer’s reputation for

deterministic calculation, it’s fitting that one of its earliest

applications was the generation of random numbers.

2.

1947: George Dantzig, at the RAND Corporation, creates the simplex

method for linear programming.

In terms of widespread application, Dantzig’s algorithm is one of the

most successful of all time: Linear

programming dominates the world of industry, where economic survival

depends on the ability to optimize

within budgetary and other constraints. (Of course, the “real”

problems of industry are often nonlinear; the use

of linear programming is sometimes dictated by the computational

budget.) The simplex method is an elegant

way of arriving at optimal answers. Although theoretically susceptible

to exponential delays, the algorithm

in practice is highly efficient—which in itself says something

interesting about the nature of computation.

In terms of widespread use, George Dantzig’s simplex method is among

the most successful algorithms of all time.

3.

1950: Magnus Hestenes, Eduard Stiefel, and Cornelius Lanczos, all from

the Institute for Numerical Analysis

at the National Bureau of Standards, initiate the development of

Krylov subspace iteration methods.

These algorithms address the seemingly simple task of solving

equations of the form Ax = b. The catch,

of course, is that A is a huge n x n matrix, so that the algebraic

answer x = b/A is not so easy to compute.

(Indeed, matrix “division” is not a particularly useful concept.)

Iterative methods—such as solving equations of

the form Kxi + 1 = Kxi + b – Axi with a simpler matrix K that’s

ideally “close” to A—lead to the study of Krylov subspaces. Named for

the Russian mathematician Nikolai Krylov, Krylov subspaces are

spanned by powers of a matrix applied to an initial“remainder”

vector r0 = b – Ax0. Lanczos found a nifty way to generate an

orthogonal basis for such a subspace when the matrix is symmetric.

Hestenes and Stiefel proposed an even niftier method, known as the

conjugate gradient method, for systems that are both symmetric and

positive definite. Over the last 50 years, numerous researchers have

improved and extended these algorithms.

The current suite includes techniques for non-symmetric systems, with

acronyms like GMRES and Bi-CGSTAB. (GMRES and

Bi-CGSTAB premiered in SIAM Journal on Scientific and Statistical

Computing, in 1986 and 1992,

respectively.)

4.

1951: Alston Householder of Oak Ridge National Laboratory formalizes the

decompositional approach

to matrix computations.

The ability to factor matrices into triangular, diagonal, orthogonal,

and other special forms has turned

out to be extremely useful. The decompositional approach has enabled

software developers to produce

flexible and efficient matrix packages. It also facilitates the analysis

of rounding errors, one of the big

bugbears of numerical linear algebra. (In 1961, James Wilkinson of the

National Physical Laboratory in

London published a seminal paper in the Journal of the ACM, titled “

Error Analysis of Direct Methods

of Matrix Inversion,” based on the LU decomposition of a matrix as a

product of lower and upper

triangular factors.)

5.

1957: John Backus leads a team at IBM in developing the Fortran

optimizing compiler.

The creation of Fortran may rank as the single most important event in

the history of computer programming: Finally, scientists (and others)

could tell the computer what they wanted it to do, without having to

descend into the netherworld of machine code.

Although modest by modern compiler standards—Fortran I consisted of a

mere 23,500 assembly-language instructions—the early

compiler was nonetheless capable of surprisingly sophisticated

computations. As Backus himself recalls in a recent history of

Fortran I, II, and III, published in 1998 in the IEEE Annals of the

History of Computing, the compiler “produced code of such efficiency

that its output would startle the programmers who studied it.”

6.

1959–61: J.G.F. Francis of Ferranti Ltd., London, finds a stable method

for computing eigenvalues, known as the QR algorithm.

Eigenvalues are arguably the most important numbers associated with

matrices—and they can be the trickiest to compute. It’s

relatively easy to transform a square matrix into a matrix that’s “

almost” upper triangular, meaning one with a single extra set of

nonzero entries just below the main diagonal. But chipping away those

final nonzeros, without launching an avalanche of error, is nontrivial.

The QR algorithm is just the ticket. Based on the QR decomposition,

which writes A as the product of an orthogonal matrix Q and an upper

triangular matrix R, this approach iteratively changes Ai = QR into Ai +

1 = RQ, with a few bells and whistles for accelerating convergence to

upper triangular form. By the mid-1960s, the QR algorithm had turned

once-formidable eigenvalue problems into routine calculations.

7.

1962: Tony Hoare of Elliott Brothers, Ltd., London, presents Quicksort.

Putting N things in numerical or alphabetical order is mind-numbingly

mundane. The intellectual challenge lies in devising ways of doing so

quickly. Hoare’s algorithm uses the age-old recursive strategy of

divide and conquer to solve the problem: Pick one element as a “pivot,

” separate the rest into piles of “big” and “small” elements (as

compared with the pivot), and then repeat this procedure on each pile.

Although it’s possible to get stuck doing all N(N – 1)/2 comparisons

(especially if you use as your pivot the first item on a list that’s

already sorted!), Quicksort runs on average with O(N log N) efficiency.

Its elegant simplicity has made Quicksort the pos-terchild of

computational complexity.

8.

1965: James Cooley of the IBM T.J. Watson Research Center and John Tukey

of Princeton University and AT&T Bell Laboratories unveil the fast Fourier

transform. Easily the most far-reaching algo-rithm in applied mathematics, the

FFT revolutionized signal processing. The underlying idea goes back to Gauss (who needed to

calculate orbits of asteroids), but it was the Cooley–Tukey paper that made it clear how

easily Fourier transforms can be computed. Like Quicksort, the FFT relies on a

divide-and-conquer strategy to reduce an ostensibly O(N2) chore to an O(N log N) frolic.

But unlike Quick- sort, the implementation is (at first sight) nonintuitive and less than

straightforward. This in itself gave computer science an impetus to investigate the inherent

complexity of computational problems and algorithms.

9.

1977: Helaman Ferguson and Rodney Forcade of Brigham Young University

advance an integer relation detection algorithm.

The problem is an old one: Given a bunch of real numbers, say x1, x2, .

. . , xn, are there integers a1, a2, . . . , an (not all 0) for which

a1x1 + a2x2 + . . . + anxn = 0? For n = 2, the venerable Euclidean

algorithm does the job, computing terms in the continued-fraction

expansion of x1/x2. If x1/x2 is rational, the expansion terminates and,

with proper unraveling, gives the “smallest” integers a1 and a2.

If the Euclidean algorithm doesn’t terminate—or if you simply get

tired of computing it—then the unraveling procedure at least provides

lower bounds on the size of the smallest integer relation. Ferguson

and Forcade’s generalization, although much more difficult to implement

(and to understand), is also more powerful. Their detection algorithm,

for example, has been used to find the precise coefficients of the

polynomials satisfied by the third and fourth bifurcation points, B3 =

3.544090 and B4 = 3.564407, of the logistic map. (The latter

polynomial is of degree 120; its largest coefficient is 25730.) It has

also proved useful in simplifying calculations with Feynman diagrams

in quantum field theory.

10.

1987: Leslie Greengard and Vladimir Rokhlin of Yale University invent

the fast multipole algorithm.

This algorithm overcomes one of the biggest headaches of N-body

simulations: the fact that accurate calculations of the motions of N

particles interacting via gravitational or electrostatic forces (think

stars in a galaxy, or atoms in a protein) would seem to require O(N2)

computations—one for each pair of particles. The fast multipole

algorithm gets by with O(N) computations. It does so by using

multipole expansions (net charge or mass, dipole moment, quadrupole, and

so forth) to approximate the effects of a distant group of particles on

a local group. A hierarchical decomposition of space is used to

define ever-larger groups as distances increase.

One of the distinct advantages of the fast multipole algorithm is that

it comes equipped with rigorous error estimates, a feature that many

methods lack.

What new insights and algorithms will the 21st century bring? The

complete answer obviously won’t be known for another

hundred years. One thing seems certain, however. As Sullivan writes in

the introduction to the top-10 list, “The new century is not going to

be very restful for us, but it is not going to be dull either!”

☆─────────────────────────────────────☆

superronaldo (wxyw) 于 (Sat Jul 12 14:26:12 2003) 提到:

我就翻译最后一个啦。

10.

1987:L.Greengard和V.Rokhlin发明了快速多极算法。

这种算法克服了多粒子模拟中最大的瓶颈之一:精确计算N个粒子之间通过万有引力或静

电力的相互作用(比如星系中的星体,或蛋白质中的原子)需要O(N2)的量级。快速多极

算法达到了O(N)的量级。这种算法通过多极展开(空间的粒子或质量、偶极子,四重极

子等等)来近似远处的粒子组对近端的局部粒子组的作用。一个递归分解的空间用来描

述随距离增大的更大的组。

快速多极算法显著的优点之一是它可以任意调整精度,这个特点是很多其他方法缺少的

【 在 neco (我是猫) 的大作中提到: 】

: By Barry A. Cipra

: Algos is the Greek word for pain. Algor is Latin, to be cold. Neither is

: the root for algorithm, which stems instead from al-

: Khwarizmi, the name of the ninth-century Arab scholar whose book al-jabr

: wa’l muqabalah devolved into today’s high school

: algebra textbooks. Al-Khwarizmi stressed the importance of methodical

: procedures for solving problems. Were he around today,

: he’d no doubt be impressed by the advances in his eponymous approach.

: Some of the very best algorithms of the computer age are highlighted

: in the January/February 2000 issue of Computing in Science &

: Engineering, a joint publication of the American Institute of Physics

: ...................

☆─────────────────────────────────────☆

Jumping (Man in Experiments) 于 (Sat Jul 12 14:44:20 2003) 提到:

fortran的诞生也成为一种算法了,呵呵:p

【 在 neco (我是猫) 的大作中提到: 】

: By Barry A. Cipra

: Algos is the Greek word for pain. Algor is Latin, to be cold. Neither is

: the root for algorithm, which stems instead from al-

: Khwarizmi, the name of the ninth-century Arab scholar whose book al-jabr

: wa’l muqabalah devolved into today’s high school

: algebra textbooks. Al-Khwarizmi stressed the importance of methodical

: procedures for solving problems. Were he around today,

: he’d no doubt be impressed by the advances in his eponymous approach.

: Some of the very best algorithms of the computer age are highlighted

: in the January/February 2000 issue of Computing in Science &

: Engineering, a joint publication of the American Institute of Physics

: ...................

☆─────────────────────────────────────☆

zhangby (朋友) 于 (Sat Jul 12 15:04:28 2003) 提到:

这个算法哪儿有下载的

C的

谢谢

【 在 superronaldo (wxyw) 的大作中提到: 】

: 我就翻译最后一个啦。

: 10.

: 1987:L.Greengard和V.Rokhlin发明了快速多极算法。

: 这种算法克服了多粒子模拟中最大的瓶颈之一:精确计算N个粒子之间通过万有引力或静

: 电力的相互作用(比如星系中的星体,或蛋白质中的原子)需要O(N2)的量级。快速多极

: 算法达到了O(N)的量级。这种算法通过多极展开(空间的粒子或质量、偶极子,四重极

: 子等等)来近似远处的粒子组对近端的局部粒子组的作用。一个递归分解的空间用来描

: 述随距离增大的更大的组。

: 快速多极算法显著的优点之一是它可以任意调整精度,这个特点是很多其他方法缺少的

: 。

☆─────────────────────────────────────☆

NoFD (远离FD) 于 (Sat Jul 12 15:59:22 2003) 提到:

这十大算法,似乎本板从编辑推荐、来宾报告到(主要的)原始文献

都讨论过了,翻译就没有必要了吧?

【 在 neco (我是猫) 的大作中提到: 】

: By Barry A. Cipra

:

: Algos is the Greek word for pain. Algor is Latin, to be cold. Neither is

: the root for algorithm, which stems instead from al-

: Khwarizmi, the name of the ninth-century Arab scholar whose book al-jabr

: wa’l muqabalah devolved into today’s high school

: algebra textbooks. Al-Khwarizmi stressed the importance of methodical

: procedures for solving problems. Were he around today,

: he’d no doubt be impressed by the advances in his eponymous approach.

: Some of the very best algorithms of the computer age are highlighted

: ...................

☆─────────────────────────────────────☆

NoFD (远离FD) 于 (Sat Jul 12 16:02:37 2003) 提到:

它是其后的算法实现与评价的基础,在NA方面的贡献巨大,

当之无愧。

【 在 Jumping (Man in Experiments) 的大作中提到: 】

: fortran的诞生也成为一种算法了,呵呵:p

☆─────────────────────────────────────☆

superronaldo (wxyw) 于 (Sat Jul 12 17:01:30 2003) 提到:

没听说有现成的O(N)的,而且不同问题核函数不一样。

【 在 zhangby (朋友) 的大作中提到: 】

: 这个算法哪儿有下载的

: C的

: 谢谢

☆─────────────────────────────────────☆

weck (并行计算) 于 (Sat Jul 12 20:00:04 2003) 提到:

多层快速多级子理论上可以打到o(NLogN)

多级子可以达到O(N^1.5)

【 在 superronaldo (wxyw) 的大作中提到: 】

: 没听说有现成的O(N)的,而且不同问题核函数不一样。

☆─────────────────────────────────────☆

superronaldo (wxyw) 于 (Sat Jul 12 21:57:48 2003) 提到:

O(N^1.5)是对电磁问题的Helmholtz方程的,对laplace方程、stocks

方程和弹性力学方程,是O(N)量级的,而且是两个版本。

【 在 weck (并行计算) 的大作中提到: 】

: 多层快速多级子理论上可以打到o(NLogN)

: 多级子可以达到O(N^1.5)

☆─────────────────────────────────────☆

superronaldo (wxyw) 于 (Sat Jul 12 21:58:43 2003) 提到:

google一下吧,多得是。

【 在 zhangby (朋友) 的大作中提到: 】

: 有Paper嘛?

--------------------------------------------------------------------------------

[返回上一页]

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有