<?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/"
	>

<channel>
	<title>CodingUnit Programming Tutorials &#187; Programming Algorithms</title>
	<atom:link href="http://www.codingunit.com/category/programming-algorithms/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codingunit.com</link>
	<description>CodingUnit is your online resource for learning to program. Tutorials on C, C++, PHP, Python, MySQL, Java, JQuery, Opengl, DirectX and much more!</description>
	<lastBuildDate>Thu, 29 Jul 2010 15:49:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Cocktail Sort Algorithm or Shaker Sort Algorithm</title>
		<link>http://www.codingunit.com/cocktail-sort-algorithm-or-shaker-sort-algorithm</link>
		<comments>http://www.codingunit.com/cocktail-sort-algorithm-or-shaker-sort-algorithm#comments</comments>
		<pubDate>Sun, 01 Nov 2009 12:12:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Source]]></category>

		<guid isPermaLink="false">http://www.codingunit.com/?p=796</guid>
		<description><![CDATA[In this tutorial we look at another sorting algorithm named cocktail sort. Cocktail sort is a slight variation of bubble sort. Many Names of Cocktail Sort People have given many different names to cocktail sort, but they all the same. The following names are used: Shaker sort Bi-directional sort Cocktail shaker sort Shuttle sort Happy [...]<p><a href="http://www.codingunit.com/cocktail-sort-algorithm-or-shaker-sort-algorithm">Cocktail Sort Algorithm or Shaker Sort Algorithm</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/cocktail-sort-algorithm-or-shaker-sort-algorithm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exclusive-OR (XOR) Encryption</title>
		<link>http://www.codingunit.com/exclusive-or-xor-encryption</link>
		<comments>http://www.codingunit.com/exclusive-or-xor-encryption#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:15:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Source]]></category>

		<guid isPermaLink="false">http://localhost/?p=70</guid>
		<description><![CDATA[Exclusive-OR (XOR) encryption is an encryption method that is hard to break through with so called &#8220;brute force&#8221; methods (brute force = using random encryption keys in the hope you find the correct one.), but the encryption method is susceptible to pattern recognition. Patterns can be easily avoided by first compressing the file (compression already [...]<p><a href="http://www.codingunit.com/exclusive-or-xor-encryption">Exclusive-OR (XOR) Encryption</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/exclusive-or-xor-encryption/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Shell Sort Algorithm</title>
		<link>http://www.codingunit.com/shell-sort-algorithm</link>
		<comments>http://www.codingunit.com/shell-sort-algorithm#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:11:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Source]]></category>

		<guid isPermaLink="false">http://localhost/?p=68</guid>
		<description><![CDATA[An inventor called DL Shell came up with a very interesting sort which he called shell sort. This sorting algorithm is almost similar to the bubble sort algorithm. The shell sort compares elements that are a certain distance away (d positions away) from each other and it compares these elements repeatedly (bubble sort only compares [...]<p><a href="http://www.codingunit.com/shell-sort-algorithm">Shell Sort Algorithm</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/shell-sort-algorithm/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Insertion Sort Algorithm</title>
		<link>http://www.codingunit.com/insertion-sort-algorithm</link>
		<comments>http://www.codingunit.com/insertion-sort-algorithm#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:09:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Source]]></category>

		<guid isPermaLink="false">http://localhost/?p=66</guid>
		<description><![CDATA[The insertion sort only passes through the array once. Therefore it is a very fast and efficient sorting algorithm with small arrays. (The efficiency is lost however with large amounts of data.) The sort works as follows: the array is split into two (virtual) sub-arrays. (With virtual I mean that the array is not really [...]<p><a href="http://www.codingunit.com/insertion-sort-algorithm">Insertion Sort Algorithm</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/insertion-sort-algorithm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selection Sort Algorithm</title>
		<link>http://www.codingunit.com/selection-sort-algorithm</link>
		<comments>http://www.codingunit.com/selection-sort-algorithm#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:06:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Source]]></category>

		<guid isPermaLink="false">http://localhost/?p=63</guid>
		<description><![CDATA[The selection sort is using a combination of searching and sorting. Each unsorted element that has the smallest or largest value is moved to the proper position. The inner loop (see the example) is used for the selection and this loop is searching for the smallest or largest value. The outer loop is used for [...]<p><a href="http://www.codingunit.com/selection-sort-algorithm">Selection Sort Algorithm</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/selection-sort-algorithm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange Sort Algorithm</title>
		<link>http://www.codingunit.com/exchange-sort-algorithm</link>
		<comments>http://www.codingunit.com/exchange-sort-algorithm#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:00:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Source]]></category>

		<guid isPermaLink="false">http://localhost/?p=60</guid>
		<description><![CDATA[The exchange sort is almost similar as the bubble sort. In fact some people refer to the exchange sort as just a different bubble sort. (When they see the source they even call it a bubble sort instead of its real name exchange sort.) The exchange sort compares each element of an array and swap [...]<p><a href="http://www.codingunit.com/exchange-sort-algorithm">Exchange Sort Algorithm</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/exchange-sort-algorithm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bubble Sort Algorithm</title>
		<link>http://www.codingunit.com/bubble-sort-algorithm</link>
		<comments>http://www.codingunit.com/bubble-sort-algorithm#comments</comments>
		<pubDate>Tue, 21 Jul 2009 09:46:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming Algorithms]]></category>
		<category><![CDATA[C Source]]></category>

		<guid isPermaLink="false">http://localhost/?p=51</guid>
		<description><![CDATA[The bubble sort gets its name because as array elements are sorted they gradually &#8220;bubble&#8221; to their proper positions, like bubbles rising in a glass of soda. A bubble sort will compare two adjacent element of an array and will swap them if they are out of order. The compare starts with the first and [...]<p><a href="http://www.codingunit.com/bubble-sort-algorithm">Bubble Sort Algorithm</a> is a post from: <a href="http://www.codingunit.com">CodingUnit Programming Tutorials</a></p>
]]></description>
		<wfw:commentRss>http://www.codingunit.com/bubble-sort-algorithm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
