you can display with <code>gnuplot</code>. We seek the average and
standard deviation of the <i>y</i> column.</p>
-<p>The code <a href="../../src/average.c">average.c</a> solves this
-problem using a serial algorithm. Note the use of <code>malloc</code>
-and <code>free</code> to reserve and release memory space. This allows
-for flexible and general code.</p>
+<p>The code <a href="../../src/average/average.c">average.c</a> solves
+this problem using a serial algorithm. Note the use
+of <code>malloc</code> and <code>free</code> to reserve and release
+memory space. This allows for flexible and general code.</p>
<p>A parallel implementation of the solution could use an algorithm in
which the data is divided among all the processes. This illustrates
computer, allowing larger problems to be solved.</p>
<p>The algorithm of a parallel implementation is illustrated in a
-simplified <a href="../../src/flowchart.pdf">flowchart</a>. Note the
-following:</p>
+simplified <a href="../../src/average/flowchart.pdf">flowchart</a>. Note
+the following:</p>
<ul>
<li>All the processes contain a chunk of data.</li>
<li>The number of numbers in each process is adjusted dynamically