from analysis of algorithms to analytic combinatorics -...

34
From Analysis of Algorithms to Analytic Combinatorics Robert Sedgewick Princeton University a journey with Philippe Flajolet

Upload: vominh

Post on 18-May-2018

224 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

From Analysis of Algorithmsto Analytic Combinatorics

Robert SedgewickPrinceton University

a journey with Philippe Flajolet

Page 2: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

This talk is dedicated to the memory of Philippe Flajolet

Philippe Flajolet 1948-2011

Page 3: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

47. PF. Elements of a general theory of combinatorial structures. 1985.

69. PF. Mathematical methods in the analysis of algorithms and data structures. 1988.

70. PF L'analyse d'algorithmes ou le risque calculé. 1986.

72. PF. Random tree models in the analysis of algorithms. 1988.

88. PF and Michèle Soria. Gaussian limiting distributions for the number of components in combinatorial structures. 1990.

91. Jeffrey Scott Vitter and PF. Average-case analysis of algorithms and data structures. 1990.

95. PF and Michèle Soria. The cycle construction.1991.

97. PF. Analytic analysis of algorithms. 1992.

99. PF. Introduction à l'analyse d'algorithmes. 1992.

112. PF and Michèle Soria. General combinatorial schemas: Gaussian limit distributions and exponential tails. 1993.

130. RS and PF. An Introduction to the Analysis of Algorithms. 1996.

131. RS and PF. Introduction à l'analyse des algorithmes. 1996.171. PF. Singular combinatorics. 2002.

175. Philippe Chassaing and PF. Hachage, arbres, chemins & graphes. 2003.

189. PF, Éric Fusy, Xavier Gourdon, Daniel Panario, and Nicolas Pouyanne. A hybrid of Darboux's method and singularity analysis in combinatorial asymptotics. 2006.

192. PF. Analytic combinatorics—a calculus of discrete structures. 2007.

201. PF and RS. Analytic Combinatorics. 2009.

From Analysis of Algorithms to Analytic Combinatorics

Page 4: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Analysis of AlgorithmsPioneering research by Knuth put the study of the performance of

computer programs on a scientific basis.

Challenge: Keep pace with explosive growth of new algorithmsa full employment theorem for algorithm analysts

“As soon as an Analytic Engine exists, it will necessarily guide the future course of the science. Whenever any result is sought by its aid, the question will arise - By what course of calculation can these results be arrived at by the machine in the shortest time?”

Charles Babbage

how many times do I have to turn the crank?

Page 5: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Analysis of AlgorithmsPioneering research by Knuth put the study of the performance of

computer programs on a scientific basis.

Challenge: Keep pace with explosive growth of new algorithmsa full employment theorem for algorithm analysts AND STILL VALID

“As soon as an Analytic Engine exists, it will necessarily guide the future course of the science. Whenever any result is sought by its aid, the question will arise - By what course of calculation can these results be arrived at by the machine in the shortest time?”

Charles Babbage

how long will my cellphone’s battery last?

Page 6: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Genesis of “Analytic Combinatorics” (early 1980s)

Optimism and opportunity

Knuth volumes 1-3

Search for generality

Algorithms for the masses

Teaching and research in AofA

TeX

Main idea:

Teach the basics so CS students can get started on AofA.

2

ln 2�(

k�i

ln 2)�(

2k�i

ln 2,1

4)

Page 7: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Analysis of algorithms: classic example IA binary tree is a node connected to two binary trees.

How many binary trees with N nodes?

Challenge: Efficiently teach basic math skills behind such derivations.

Develop arecurrence relation.

Multiply both sidesby zN and sum to get an equation

that we can solvealgebraically

and expand toget coefficients

that we can approximate.

Then introduce agenerating function.

Quadratic equation

Stirling’s approximation

Binomial theorem

)5 =!

�!R<5

)R)5"�"R)� = �

)(a) =!

R!�

aR

)(a) = �+ a)(a)�

)(a) =�+

!�" �a�a

)5 =�

5+ �

!�55

"

)5 ! �5

5"�5

Page 8: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Analysis of algorithms: classic example IIA binary search tree is a binary tree with keys in order in inorder.

Path length of a BST built from N random distinct keys?

Note: Analyzing a property of permutations, not counting trees.

Develop arecurrence relation.

Multiply both sidesby zN and sum to get an equation

that we can solve

and expand toget coefficients

that we can approximate.

Then introduce agenerating function.

Euler-MacLaurin summation

*� = �

*(a) =�

R��

aR

*5 = 5� � +�5

��R�5

(*R + *5�R��)

*!(a) =�

(�! a)�+

��! a

*(a)

*(a) =�

(�! a)�ln

��! a

*5 = �(5+ �)(/5+� ! �)

*5 ! �5 ln5

2

1 7

5

3 6

8

4

Page 9: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Thirty years in the making

1995

2009

~1992 decision to split into two books (need to do the math!)

~1980 decision to write an AofA book

1986 Princeton course

INRIA tech reports

Page 10: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Analysis of Algorithms

Recurrences1st order, nonlinear, higher order, divide-and conquer

Generating FunctionsOGFs, EGFs, solving recurrences, CGFs, symbolic method, Lagrange inversion, PGFs, BGFs, special functions.

Asymptoticsexpansions, Euler-Maclaurin summation, bivariate, Laplace method, normal approximations, Poisson approximations, GF asymptotics

Treesforests, BSTs, Catalan trees, path length, height, unordered, labelled, 2-3

Permutationsproperties, representations, enumerations, inversions, cycles, extremal parameters

Strings and Triesbitstrings, REs, FSAs, KMP algorithm, context-free grammars, tries.

Words and Mapshashing, birthday paradox, coupon collector, occupancy, maps, applications

Goal: Teach the mathematical concepts needed to study

the performance of computer programs.

Teaches the basics for CS students to get started on AofA.

Done?

Page 11: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

An emerging idea (PF, 1980s)In principle, classical methods can provide

• full details

• full and accurate asymptotic estimates

In practice, it is often possible to

• generalize specialized derivations

• skip details and move directly to accurate asymptotics

Ultimate (unattainable) goal: Automatic analysis of algorithms

Ex.

AlgorithmAsymptoticestimate of

running time

input model

N !oats

BSTconstruction

~c N ln N seconds

Page 12: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Analytic Combinatorics: classic exampleA binary tree is a node connected to two binary trees.

How many binary trees with N nodes?

Challenge: Develop an effective calculus for such derivations.

Develop acombinatorial construction,

that we canmanipulate algebraically

and treat as a functionin the complex plane directly approximatevia singularity analysis

which directly maps toa GF equation )(a) = �+ a)(a)�

)(a) =�+

!�" �a�a

)5 =�5

5!(�/�)!5

" �5

5!�5

< B >= ! + < B > ! •! < B >

Note: Construction for BSTs is not so simple.

Page 13: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Analytic CombinatoricsA calculus of discrete structures

Symbolic MethodsCombinatorial Structures and OGFSLabelled Structures and EGFsParameters and MGFs

Complex AsymptoticsRational and Meromorphic AsymptoticsSingularity AnalysisSaddle-Point Asymptotics

Random StructuresMultivariate AsymptoticsLimit Laws

Page 14: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

The Symbolic MethodConstructions of combinatorial classes can be

automatically translated to GF definitions.

Unlabelled classes lead to OGFs

Ex. Cartesian product

(U

((a) =!

(!,")!B"C

a|!|+|"| =!

!!B

a|!|!

"!C

a|"| = )(a) · *(a)

((a) =!

R!�

(RaR =!

!"A

a|!|

Construction for ordered pairs,

and an ordinary generating function (OGF).

OGF of Cartesian product is product of OGFs by distributive law

a correspondingcounting sequence,

< A >=< B > ! < C >

! = (", #) ! !< B > ! !< C >class of objects where and

Page 15: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

The Symbolic method

< A >=< B > + < C >

< A >=< B > ! < C >

< A >= SEQ(< B >)

< A >= PSET(< B >)

< A >= MSET(< B >)

< A >= CYC(< B >)

ConstructionConstructionConstruction OGF

Union

Product

Sequence

Powerset

Multiset

Cycle

((a) = )(a) + *(a)

((a) = )(a) · *(a)

((a) =�

�! )(a)

((a) = exp()(a)! )(a)�/�+ )(a)�/�+ . . .

((a) = exp()(a) + )(a)�/�+ )(a)�/�+ . . .

((a) = ln�

�! )(a)+

��ln

��! )(a)�

+ . . .

[ several others ]

Constructions of combinatorial classes can be

automatically translated to GF definitions.

Unlabelled classes lead to OGFs

Page 16: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

The Symbolic Method

Binary words

a binary word

construction for class of all binary words

automatic derivation of OGF

Elementary OGF examples (unlabelled objects).

0 1 1 0 1 1 0 1 1 1 1 1 1

A(a) = a

>(a) =�

� � (A(a) + A(a))=

�� � �a

< W >= SEQ(< Z > + < Z >)

atomic class

< Z >= � | �

Nonnegative Integers

an integer (in unary)

1 1 1 1 1 1 1 1 1 1 1 1 1 1

construction for class of all nonnegative integers

automatic derivation of OGF

atomic class

< Z >:= �

< I!� >= SEQ(< Z >)

A(a) = a

0��(a) =�

� � a

one object of each size✓ 2N objects of each size✓

��! �a

= �+ �a+ �a� + �a� . . . =!

5!�

�5a5�

�! a= �+ a+ a� + a� . . . =

!

5!�

a5

Page 17: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

The Symbolic Method

Trees

a general tree

construction for class of all ge

automatic derivation of OGF

Representative OGF examples (unlabelled objects).

Binary trees

a binary tree

construction for class of all binary trees

automatic derivation of OGF

atomic class

< B >= ! + < B > ! < Z > ! < B >

)(a) = �+ a)(a)�

< Z >:= •

< G >=< Z > SEQ(< G >)

)(a) =�+

!�" �a�a

.(a) =a

� �.(a)

.(a)� �.(a) + a = �a)(a)� � )(a) + � = �

.(a) =�+

!�" �a�

atomic class

< Z >:= •

Page 18: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

The Symbolic MethodDerivations are easy to generalize.

Unary-Binary Trees

a unary-binary tree

construction for class of all unary-binary trees

automatic derivation of OGF

atomic class

< Z >:= •

<(a) =�! a!

!(�+ a)(�! �a)�a

<(a) = a(�+<(a) +<(a)�)

< U >=< Z > (< � > + < U > + < U > ! < U >)

Page 19: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

The Symbolic method

< A >=< B > + < C >

< A >=< B > ! < C >

< A >= SEQk(< B >)

< A >= SEQ(< B >)

< A >= SETk(< B >)

< A >= SET(< B >)

< A >= CYCk(< B >)

< A >= CYC(< B >)

ConstructionConstructionConstruction EGF

Union

Product

Sequence

size k

Sequenceany size

Setsize k

Setany size

Cycle

size k

Cycleany size

((a) = )(a) + *(a)

((a) = )(a) · *(a)

((a) =�

�! )(a)

[ several others ]

Constructions of combinatorial classes can be

automatically translated to GF definitions.

Labelled classes lead to EGFs

((a) = )(a)R

((a) = ln�

�! )(a)

((a) = )(a)R/R

((a) = L)(a)((a) = )(a)R/R!

Page 20: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

The Symbolic Method

Surjections

< R >= SEQ(SET!�(< Z >))

Derangements

9(a) =�

� ��

R�� aR/R!=

�� � (La � �)

=�

� � La

1 2 3 4 5 6 7 8

2 1 2 3 5 3 4 3

1 2 3 4 5

{2} {1, 3} {4, 6, 8} {7} {5}

a surjection (onto mapping)

alternate (preimage) representation

construction for class of all surjectionsonto any initial segment of the integers

automatic derivation of EGF

1 2 3 4 5 6 7 8

3 4 8 2 6 7 5 1

a derangement

alternate (cycle) representation

construction for class of all derangements

automatic derivation of EGF

< D >= SET(CYC>�(< Z >))

+(a) = L�

R>� aR/R = Lln �

��a�a

=L�a

� � a

Representative EGF examples (labelled objects).

{1 3 8} {2 4} {5 6 7}

Page 21: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Recovering coefficients from GFsis sometimes easy, but often challenging

class GF expansion

binary words

trees binomial

BSTs elementaryconvolution

permutations with all cycle lengths > 3

tripleconvolution

unary-binary trees notelementary

examples (increasing order of difficulty)

+(�)(a) =La+a�/�+a�/�

(�! a)

<(a) =�! a!

!(�+ a)(�! �a)�a

.(a) =�+

!�" �a�

*(a) =�

(�! a)�ln

��! a

>(a) =�

� � �a �+ �a+ (�a)� + (�a)� + . . .

Page 22: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Assigning complex values to the variable z in a GF gives a

method of analysis to estimate the coefficients.

The singularities of the function determine the method.

Complexification

singularity type method of analysis

meromorphic(just poles)

Cauchy(elementary)

fractional powerslogarithmic

Cauchy(Flajolet-Odlyzko)

none(entire function) saddle point

First Principle. Exponential growth of a function’s coefficients

is determined by the location of its singularities.

Second Principle. Subexponential factor in a function’s coefficients

is determined by the nature of its singularities.

Page 23: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Flajolet-Odlyzko method provides detailed

asymptotic estimates of coefficients for a broad function scale.

Singularity Analysis

C H

[a5](� � a)� =���P

*

(� � a)�

a5+� Ka

� ���P

/

(� � a)�

a5+� Ka

� �

�(�)5�+�

Start with Cauchy coefficient formula

and evaluate, leading to integral representation of the Gamma function

deform to Hankel countour

Ex. Fractional powers

Approach extends to logarithmic factors.

Also effective for implicitly defined GFs.

Page 24: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Singularity Analysisleads to general transfer theorems that immediately provide

coefficient asymptotics.

[a5](�! a)! " �

!(!)5!+�

[a5](�! a)! ln�

�! a" �

!(!)5!+� ln5

[a5]�

(�! a/!)= !5

Transfer theorems are effective even for approximations near singularities.

Page 25: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Complexification examples

class GFsingularitysingularity coeffiecient

asymptoticsclass GF type atcoeffiecientasymptotics

binary words pole

derangements pole

surjections poles

trees squareroot

BSTs logarithmic

.(a) =�+

!�" �a�

>(a) =�

� � �a

+(a) =L�a

� � a

9(a) =�

�! La

>5 = �5

+5 ! L!�

95 ! 5!�(ln �)5+�

.5 ! �5!�

!�5�

*(a) =�

(�! a)�ln

��! a *5 ! �5 ln5

Page 26: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

“If you can specify it, you can analyze it”

GF asymptoticsspeci"cation SymbolicMethod

TransferTheorems

permutations with all cycle length > 3

unary-binary trees

< D(�) >= SET(CYC>�(< Z >)) +(�)(a) =La+a�/�+a�/�

(�! a)+(�)5 ! L!�!�/�!�/�

Representative examples

< U >=< z > (< � > + < U > + < U > ! < U >)

<(a) =�! a!

!(�+ a)(�! �a)�a

<5 ! �5!

��5�

Page 27: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

AC SchemasSymbolic Method

First Law

Second Law

Singularity Analysis

AC Schemas

Saddle Point

Limit Laws

The symbolic method and singularity analysis admit

universal laws of sweeping generality.

Develop a system of combinatorial constructions,

that we canmanipulate algebraically

that is amenable tosingularity analysis

which directly maps to a system of GF equations

Groebner basis elimination

Drmota-Lalley-Woods theorem

.�(a) = -�(.�(a),.�(a), . . . ,.[(a))

.�(a) = -�(.�(a),.�(a), . . . ,.[(a))

. . .

.[(a) = -[(.�(a),.�(a), . . . ,.[(a))

to get a singlecomplex function

Like a context-free languageor data-type definition

(irreducible and aperiodic)

Ex. Context-free specifications

.(a) ! J" H!

�" Ia

.�(a) = -(.�(a),.�(a), . . . ,.[(a))

A universal law for context-free specifications.5 ! H

�!�5�

I5

< G� > = 67�(< G� >, < G� >, . . . , < Gt >)

< G� > = 67�(< G� >, < G� >, . . . , < Gt >)

. . .

< Gt > = 67[(< G� >, < G� >, . . . , < Gt >)

Symbolic method leadsto a system of implicit

function definitions

Page 28: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Bumps in the road

Constructions may be difficult to discover.

Implicit functions may be difficult to analyze.

Transfer theorems have technical conditions that need to be checked.

Multiple dominant singularities lead to oscillations.

Many GFs have no singularities, need saddle-point asymptotics.

Singularity structure may be complicated, need Mellin asymptotics.

AofA often requires studying properties, need MGFs and limit laws.

Many of these have been effectively addressed and research is ongoing.

Ex: BSTs

Ex: Counting balanced BSTs

Ex: Involutions

Ex: Tries, Divide-and-conquer algorithms

Ex: Arithmetic algorithms

Ex: PF and RS “formula in common”

Ex: Planar graphs

Page 29: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

The Logical Structure of Analytic Combinatorics

Symbolic MethodsGenerating functions

(OGFs, EGFs, MGFs)

Complex Asymptotics

Singularity AnalysisSaddle Point

Random StructuresMultivariate AsymptoticsSingularity Perturbation

ExactCounting

Asymptotic Counting

LargeDeviations

Momentsof Parameters

Limit Laws

CombinatorialStructures

Page 30: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

If you can specify it, you can analyze it

Applications of analytic combinatorics

• patterns in random strings

• polynomials over finite fields

• hashing

• digital tree and tries

• geometric search

• combinatorial chemistry

• arithmetic algorithms

• planar maps and graphs

• probabilistic stream algorithms

• master theorem for divide-and-conquer

• bioinformatics

• statistical physics

. . .

A calculus for the study of discrete structures.

Page 31: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

A brilliant mathematician and truly a computer scientistPF, SODA 2007

Knuth proved the point that precise analysis is both feasible and fruitful, but his attention to detail was viewed as excessive by many.

Theoretical computer science reverted to worst-case analysis based on tools from computational complexity. In all too many cases, this has resulted in an excess of its own, with works culminating in teratological constrcutions both devoid of mathematical simplicity and elegance and bearing little relevance to the practice of computing.

At the same time, average-case and probabilistic analyses have proven to have spectacular impact on the practice of computing.

Many fundamental algorithms and data structures can be precisely analyzed and tuned for optimal performance. The corresponding calculus, largely motivated by considerations of algorithmic efficiency, is also of some mathematical interest per se.

Page 32: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

47. PF. Elements of a general theory of combinatorial structures. 1985.

69. PF. Mathematical methods in the analysis of algorithms and data structures. 1988.

70. PF L'analyse d'algorithmes ou le risque calculé. 1986.

72. PF. Random tree models in the analysis of algorithms. 1988.

88. PF and Michèle Soria. Gaussian limiting distributions for the number of components in combinatorial structures. 1990.

91. Jeffrey Scott Vitter and PF. Average-case analysis of algorithms and data structures. 1990.

95. PF and Michèle Soria. The cycle construction.1991.

97. PF. Analytic analysis of algorithms. 1992.

99. PF. Introduction à l'analyse d'algorithmes. 1992.

112. PF and Michèle Soria. General combinatorial schemas: Gaussian limit distributions and exponential tails. 1993.

130. RS and PF. An Introduction to the Analysis of Algorithms. 1996.

131. RS and PF. Introduction à l'analyse des algorithmes. 1996.171. PF. Singular combinatorics. 2002.

175. Philippe Chassaing and PF. Hachage, arbres, chemins & graphes. 2003.

189. PF, Éric Fusy, Xavier Gourdon, Daniel Panario, and Nicolas Pouyanne. A hybrid of Darboux's method and singularity analysis in combinatorial asymptotics. 2006.

192. PF. Analytic combinatorics—a calculus of discrete structures. 2007.

201. PF and RS. Analytic Combinatorics. 2009.

From Analysis of Algorithms to Analytic Combinatorics

Page 33: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

Thank you, Philippe !

Working with you was a pleasure, an honor, and a privilege.

Page 34: From Analysis of Algorithms to Analytic Combinatorics - …algo.inria.fr/pfac/PFAC/Program_files/Robert Sedgewick - From... · From Analysis of Algorithms to Analytic Combinatorics

http://algo.inria.fr/pfac/PFAC/PFAC.html