Data Structures and Algorithms with Object-Oriented Design Patterns in C#
next up previous contents index

Average Running Times

 

In the previous section, we found the function, tex2html_wrap_inline57635, which gives the running time of Program gif as a function both of number of inputs, n, and of the actual input values. Suppose instead we are interested in a function tex2html_wrap_inline57643 which gives the running time on average for n inputs, regardless of the values of those inputs. In other words, if we run Program gif, a large number of times on a selection of random inputs of length n, what will the average running time be?

We can write the sum of the running times given in Table gif in the following form

  equation570

where tex2html_wrap_inline57649 is the probability that line 8 of the program is executed. The probability tex2html_wrap_inline57649 is given by

displaymath57637

That is, tex2html_wrap_inline57649 is the probability that the tex2html_wrap_inline57621 array entry, tex2html_wrap_inline57623, is larger than the maximum of all the preceding array entries, tex2html_wrap_inline57659.

In order to determine tex2html_wrap_inline57649, we need to know (or to assume) something about the distribution of input values. For example, if we know a priori that the array passed to the method FindMaximum is ordered from smallest to largest, then we know that tex2html_wrap_inline57663. Conversely, if we know that the array is ordered from largest to smallest, then we know that tex2html_wrap_inline57665.

In the general case, we have no a priori knowledge of the distribution of the values in the input array. In this case, consider the tex2html_wrap_inline57621 iteration of the loop. In this iteration tex2html_wrap_inline57623 is compared with the maximum of the i values, tex2html_wrap_inline57659 preceding it in the array. Line 6 of Program gif is only executed if tex2html_wrap_inline57623 is the largest of the i+1 values tex2html_wrap_inline57679. All things being equal, we can say that this will happen with probability 1/(i+1). Thus

  eqnarray586

Substituting this expression for tex2html_wrap_inline57649 in Equation gif and simplifying the result we get

  eqnarray593

where tex2html_wrap_inline57685, is the tex2html_wrap_inline57687 harmonic number .


next up previous contents index

Bruno Copyright © 2001 by Bruno R. Preiss, P.Eng. All rights reserved.