<?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>algorithms | Learn C Games Programming Blog</title>
	<atom:link href="https://learncgames.com/tag/algorithms/feed/" rel="self" type="application/rss+xml" />
	<link>https://learncgames.com</link>
	<description>A blog about C, programming games and my ebook(s).</description>
	<lastBuildDate>Sun, 22 Nov 2020 11:49:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://learncgames.com/wp-content/uploads/2020/03/cropped-favicon-32x32.png</url>
	<title>algorithms | Learn C Games Programming Blog</title>
	<link>https://learncgames.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">181446779</site>	<item>
		<title>Loads of C Algorithms</title>
		<link>https://learncgames.com/loads-of-c-algorithms/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=loads-of-c-algorithms</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Wed, 25 Nov 2020 00:00:21 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[algorithms]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=1882</guid>

					<description><![CDATA[<p>While it&#8217;s fun writing your own code when it comes to things like sort or graph algorithms, common algorithms, you can save a lot of time, grief, debugging by using code that someone else has created. Today I came across an algorithms website with algorithm source code for 14 programming languages including C, C++, Java, [&#8230;]</p>
The post <a href="https://learncgames.com/loads-of-c-algorithms/">Loads of C Algorithms</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:354,&quot;href&quot;:&quot;http:\/\/c.algorithmexamples.com&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20250425172434\/https:\/\/c.algorithmexamples.com\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 14:22:31&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-10 10:55:56&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-24 04:47:53&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-05 05:58:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-27 14:12:46&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-03 08:35:37&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-03 08:35:37&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:355,&quot;href&quot;:&quot;http:\/\/algorithmexamples.com&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20251105111141\/https:\/\/www.algorithmexamples.com\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 14:22:33&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-10 10:55:57&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-19 14:46:58&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-22 19:19:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-05 05:58:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-27 14:12:45&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-03 08:35:36&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-03 08:35:36&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]'></div>
<figure id="attachment_1883" aria-describedby="caption-attachment-1883" style="width: 450px" class="wp-caption alignleft"><img fetchpriority="high" decoding="async" class="size-full wp-image-1883" src="https://learncgames.com/wp-content/uploads/2020/11/c-algorithms.png" alt="C algorithms" width="450" height="223" srcset="https://learncgames.com/wp-content/uploads/2020/11/c-algorithms.png 450w, https://learncgames.com/wp-content/uploads/2020/11/c-algorithms-300x149.png 300w" sizes="(max-width: 450px) 100vw, 450px" /><figcaption id="caption-attachment-1883" class="wp-caption-text">From <a href="http://c.algorithmexamples.com/">C Algorithms</a></figcaption></figure>
<p>While it&#8217;s fun writing your own code when it comes to things like sort or graph algorithms, common algorithms, you can save a lot of time, grief, debugging by using code that someone else has created.</p>
<p>Today I came across an <a title="Link to algorithms examples website" href="http://algorithmexamples.com/" target="_blank" rel="nofollow noopener noreferrer">algorithms website</a> with algorithm source code for 14 programming languages including C, C++, Java, Python and go.</p>
<p>The <a title="Link to C site on Algorithem website" href="http://c.algorithmexamples.com/" target="_blank" rel="nofollow noopener noreferrer">C site</a> alone has over 150 algorithms, mind you the Python and C++ have over 600!. Each of the ones I&#8217;ve looked at links to a YouTube video (<em>not always about a C implementation but about the topic</em>) and has a source code listing.</p>
<p>Overall its a very useful resource, has a memorable url (<em>algorithm examples</em>) and I&#8217;;ve added a permanent link on the C Code utilities page.</p>The post <a href="https://learncgames.com/loads-of-c-algorithms/">Loads of C Algorithms</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1882</post-id>	</item>
	</channel>
</rss>
