<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Craigmount Higher Computing &#187; Standard Algorithms</title>
	<atom:link href="http://craigmounthighercomputing.wordpress.com/category/standard-algorithms/feed/" rel="self" type="application/rss+xml" />
	<link>http://craigmounthighercomputing.wordpress.com</link>
	<description>Higher Computing 2007 - 2008 at Craigmount</description>
	<lastBuildDate>Thu, 10 Sep 2009 10:20:56 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='craigmounthighercomputing.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/7815c176806fa7b8f3232dcf33020e87?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Craigmount Higher Computing &#187; Standard Algorithms</title>
		<link>http://craigmounthighercomputing.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://craigmounthighercomputing.wordpress.com/osd.xml" title="Craigmount Higher Computing" />
		<item>
		<title>Standard Algorithms 3 &amp; 4</title>
		<link>http://craigmounthighercomputing.wordpress.com/2007/12/03/standard-algorithms-3-4/</link>
		<comments>http://craigmounthighercomputing.wordpress.com/2007/12/03/standard-algorithms-3-4/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 23:45:59 +0000</pubDate>
		<dc:creator>mrwhiteside</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Standard Algorithms]]></category>
		<category><![CDATA[standard algorithm finding maximum finding minimum]]></category>

		<guid isPermaLink="false">http://craigmounthighercomputing.wordpress.com/2007/12/03/standard-algorithms-3-4/</guid>
		<description><![CDATA[So these two find the highest number in a list or the lowest number in a list.  The way they work is this:  look at the first item in the list and make it the maximum, then look at every other item and see if it is more.  Quite simple when you think of it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigmounthighercomputing.wordpress.com&blog=1775093&post=84&subd=craigmounthighercomputing&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So these two find the highest number in a list or the lowest number in a list.  The way they work is this:  look at the first item in the list and make it the maximum, then look at every other item and see if it is more.  Quite simple when you think of it like that.</p>
<p>Here is the pseudocode for finding max:</p>
<p><img src="///C:/DOCUME%7E1/JTW/LOCALS%7E1/Temp/moz-screenshot-3.jpg" /><img src="///C:/DOCUME%7E1/JTW/LOCALS%7E1/Temp/moz-screenshot-4.jpg" /></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.1<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">set the first item to be the maximum</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.2<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">for each item (starting with the second)</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.3<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">if the current item is more than the maximum</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.4<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">set the current item to be the maximum</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.5<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">end if</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.6<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">end loop</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.7 </span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">print out the maximum</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"> Finding the minimum is exactly the same only change more than to read less than (and every maximum to minimum).</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">Powerpoint:</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"> <a href="http://craigmounthighercomputing.files.wordpress.com/2007/12/finding-max-min.jpg" title="Direct link to file"><img src="http://craigmounthighercomputing.files.wordpress.com/2007/12/finding-max-min.thumbnail.jpg?w=170&#038;h=128" alt="finding-max-min.jpg" height="128" width="170" /></a></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/craigmounthighercomputing.wordpress.com/84/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/craigmounthighercomputing.wordpress.com/84/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/craigmounthighercomputing.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/craigmounthighercomputing.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/craigmounthighercomputing.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/craigmounthighercomputing.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/craigmounthighercomputing.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/craigmounthighercomputing.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/craigmounthighercomputing.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/craigmounthighercomputing.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/craigmounthighercomputing.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/craigmounthighercomputing.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigmounthighercomputing.wordpress.com&blog=1775093&post=84&subd=craigmounthighercomputing&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://craigmounthighercomputing.wordpress.com/2007/12/03/standard-algorithms-3-4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/705dbd8ec4718c1d79c547158ad43982?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mrwhiteside</media:title>
		</media:content>

		<media:content url="/DOCUME%7E1/JTW/LOCALS%7E1/Temp/moz-screenshot-3.jpg" medium="image" />

		<media:content url="/DOCUME%7E1/JTW/LOCALS%7E1/Temp/moz-screenshot-4.jpg" medium="image" />

		<media:content url="http://craigmounthighercomputing.files.wordpress.com/2007/12/finding-max-min.thumbnail.jpg" medium="image">
			<media:title type="html">finding-max-min.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Standard Algorithm 2 &#8211; Linear Search</title>
		<link>http://craigmounthighercomputing.wordpress.com/2007/11/30/standard-algorithms-linear-search/</link>
		<comments>http://craigmounthighercomputing.wordpress.com/2007/11/30/standard-algorithms-linear-search/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 23:38:22 +0000</pubDate>
		<dc:creator>mrwhiteside</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Standard Algorithms]]></category>
		<category><![CDATA[linear search standard algorithm]]></category>

		<guid isPermaLink="false">http://craigmounthighercomputing.wordpress.com/2007/12/03/standard-algorithms-linear-search/</guid>
		<description><![CDATA[This algorithm asks the user for something to look for and then checks through a list of items to see if it can find it.   If it does find it, the algorithm says in what position it found it.   So for example from the following list:
&#8220;Stewart&#8221;, &#8220;Simon&#8221;, &#8220;Dara&#8221;, &#8220;Scott&#8221;, &#8220;Keith&#8221;, &#8220;Farooq&#8221;, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigmounthighercomputing.wordpress.com&blog=1775093&post=82&subd=craigmounthighercomputing&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This algorithm asks the user for something to look for and then checks through a list of items to see if it can find it.   If it does find it, the algorithm says in what position it found it.   So for example from the following list:</p>
<p><strong><font color="#000080">&#8220;Stewart&#8221;, &#8220;Simon&#8221;, &#8220;Dara&#8221;, &#8220;Scott&#8221;, &#8220;Keith&#8221;, &#8220;Farooq&#8221;, &#8220;Gaetano&#8221;</font></strong></p>
<p><strong><font color="#000000">User Input                                                Algorithm Output</font></strong></p>
<p><font color="#ff0000">Stewart                                                            1</font></p>
<p><font color="#ff0000">Dara                                                                        3</font></p>
<p><font color="#ff0000">Gaetano                                                            7</font></p>
<p>In the same way as the last standard algorithm you need to be able to write the pseudocode in the exam!</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.1<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">ask for item being searched for</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.2<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">for each item in the array</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.3<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">if this item matches the item being searched for</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.4<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">store the position</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.5<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">end if</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.6<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">end loop</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.7 </span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">print out where the item was found</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p>Powerpoint below:</p>
<p><a href="http://craigmounthighercomputing.files.wordpress.com/2007/12/linear-search.jpg" title="Direct link to file"><img src="http://craigmounthighercomputing.files.wordpress.com/2007/12/linear-search.thumbnail.jpg?w=168&#038;h=128" alt="linear-search.jpg" height="128" width="168" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/craigmounthighercomputing.wordpress.com/82/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/craigmounthighercomputing.wordpress.com/82/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/craigmounthighercomputing.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/craigmounthighercomputing.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/craigmounthighercomputing.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/craigmounthighercomputing.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/craigmounthighercomputing.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/craigmounthighercomputing.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/craigmounthighercomputing.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/craigmounthighercomputing.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/craigmounthighercomputing.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/craigmounthighercomputing.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigmounthighercomputing.wordpress.com&blog=1775093&post=82&subd=craigmounthighercomputing&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://craigmounthighercomputing.wordpress.com/2007/11/30/standard-algorithms-linear-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/705dbd8ec4718c1d79c547158ad43982?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mrwhiteside</media:title>
		</media:content>

		<media:content url="http://craigmounthighercomputing.files.wordpress.com/2007/12/linear-search.thumbnail.jpg" medium="image">
			<media:title type="html">linear-search.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Standard Algorithm 1 &#8211; Counting Occurrences</title>
		<link>http://craigmounthighercomputing.wordpress.com/2007/11/29/standard-algorithm-1-counting-occurrences/</link>
		<comments>http://craigmounthighercomputing.wordpress.com/2007/11/29/standard-algorithm-1-counting-occurrences/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 18:01:18 +0000</pubDate>
		<dc:creator>mrwhiteside</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Standard Algorithms]]></category>
		<category><![CDATA[standard algorithm counting Occurrences]]></category>

		<guid isPermaLink="false">http://craigmounthighercomputing.wordpress.com/2007/11/29/standard-algorithm-1-counting-occurrences/</guid>
		<description><![CDATA[This is the first standard algorithm (in no particular order)   that you have to know, and be able to write a pseudo code version of in the exam.
Put simply this algorithm counts the number of times an item appears in a list.  The item could be a name or a number, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigmounthighercomputing.wordpress.com&blog=1775093&post=80&subd=craigmounthighercomputing&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is the first standard algorithm (in no particular order)   that you have to know, and be able to write a pseudo code version of in the exam.</p>
<p>Put simply this algorithm counts the number of times an item appears in a list.  The item could be a name or a number, the list is normally an array.</p>
<p>So for example in the following list:</p>
<p><font color="#0000ff">&#8220;A&#8221;  &#8220;B&#8221;  &#8220;B&#8221;  &#8220;C&#8221; &#8220;B&#8221; &#8220;A&#8221;  &#8220;A&#8221; &#8220;B&#8221; &#8220;C&#8221; &#8220;B&#8221; </font></p>
<p>The algorithm would ask the user what they are looking for and then should return the results below:</p>
<p><strong>Being looked for                             </strong>       <strong>Number of occurrences</strong></p>
<p><font color="#ff0000">A                                                                         </font>                                       <font color="#ff0000">3</font></p>
<p><font color="#ff0000">B</font>                                                                                                                 <font color="#ff0000">5</font></p>
<p><font color="#ff0000">C  </font>                                      <font color="#ff0000">                                                                         2</font></p>
<p><font color="#ff0000"> </font></p>
<p>So you need to be able to write the pseudo code that will do this.   My answer is below, see the powerpoints at the bottom for more detail:</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.1<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">ask for item being searched for</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.2<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">for each item in the array </span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.3<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">if this item matches the item being searched for</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.4<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">add one to the count</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.5<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">end if</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.6<span>  </span></span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">end loop</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;">1.7 </span><span style="font-size:14pt;font-family:Arial;color:#3333cc;">print out the number of times the item was found</span></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;">&nbsp;</p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"> <a href="http://craigmounthighercomputing.files.wordpress.com/2007/11/counting-occurrences.jpg" title="Direct link to file"><img src="http://craigmounthighercomputing.files.wordpress.com/2007/11/counting-occurrences.thumbnail.jpg?w=169&#038;h=128" alt="counting-occurrences.jpg" height="128" width="169" /></a></p>
<p style="margin-top:8.4pt;margin-bottom:0;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:baseline;"><span style="font-size:14pt;font-family:Arial;color:#c00000;"><br />
</span><span style="font-size:14pt;font-family:Arial;color:#3333cc;"></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/craigmounthighercomputing.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/craigmounthighercomputing.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/craigmounthighercomputing.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/craigmounthighercomputing.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/craigmounthighercomputing.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/craigmounthighercomputing.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/craigmounthighercomputing.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/craigmounthighercomputing.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/craigmounthighercomputing.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/craigmounthighercomputing.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/craigmounthighercomputing.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/craigmounthighercomputing.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigmounthighercomputing.wordpress.com&blog=1775093&post=80&subd=craigmounthighercomputing&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://craigmounthighercomputing.wordpress.com/2007/11/29/standard-algorithm-1-counting-occurrences/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/705dbd8ec4718c1d79c547158ad43982?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mrwhiteside</media:title>
		</media:content>

		<media:content url="http://craigmounthighercomputing.files.wordpress.com/2007/11/counting-occurrences.thumbnail.jpg" medium="image">
			<media:title type="html">counting-occurrences.jpg</media:title>
		</media:content>
	</item>
	</channel>
</rss>