<?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>Web Development - Programming - Coding Recipes &#187; Data Structures</title>
	<atom:link href="http://codingrecipes.com/category/data-structures/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 19:58:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Understanding Pointers In C &#8211; C Pointers Tutorial</title>
		<link>http://codingrecipes.com/understanding-pointers-in-c-c-pointers-tutorial</link>
		<comments>http://codingrecipes.com/understanding-pointers-in-c-c-pointers-tutorial#comments</comments>
		<pubDate>Thu, 17 Jun 2010 08:45:08 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[C Programming]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=997</guid>
		<description><![CDATA[We need to cover some ground so be patient and you will learn all about pointers.
A computer stores variables in it&#8217;s memory and the memory is basically a series of zeros and ones.
So if you could see the raw contents of your RAM you would see something similar to this:
010010010111111101010010101001010100101111001010100111001
Although your memory will have much [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/understanding-pointers-in-c-c-pointers-tutorial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementation of a Vector data structure in C</title>
		<link>http://codingrecipes.com/implementation-of-a-vector-data-structure-in-c</link>
		<comments>http://codingrecipes.com/implementation-of-a-vector-data-structure-in-c#comments</comments>
		<pubDate>Thu, 23 Jul 2009 22:16:44 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[C Programming]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Low Level]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=674</guid>
		<description><![CDATA[I use Python a lot but it&#8217;s very slow in some cases which I then use C because it can be 1,000s X faster than Python.
Here is a Vector that I just wrote to use in my new project:
vector.h

/**
 * Hamid Alipour
 */
&#160;
#ifndef __VECTORH__
#define __VECTORH__
&#160;
#include &#60;stdio.h&#62;
#include &#60;stdlib.h&#62;
#include &#60;ctype.h&#62;
#include &#60;string.h&#62;
#include &#60;assert.h&#62;
&#160;
#define VECTOR_INIT_SIZE    4
#define [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/implementation-of-a-vector-data-structure-in-c/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
