<?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>Abhishek Shukla &#187; Algorithm and Data Structures</title>
	<atom:link href="http://www.abhishekshukla.com/category/algorithm-and-data-structures/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abhishekshukla.com</link>
	<description>This is one stop shop for technology and gadget information</description>
	<lastBuildDate>Wed, 22 May 2013 11:09:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList</title>
		<link>http://www.abhishekshukla.com/algorithm-and-data-structures/algorithm-and-data-structures-node-node-chain-linked-list-doubly-linkedlist-net-linkedlist/</link>
		<comments>http://www.abhishekshukla.com/algorithm-and-data-structures/algorithm-and-data-structures-node-node-chain-linked-list-doubly-linkedlist-net-linkedlist/#comments</comments>
		<pubDate>Tue, 10 Jul 2012 09:04:17 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[Algorithm and Data Structures]]></category>
		<category><![CDATA[.NET LinkedList]]></category>
		<category><![CDATA[Doubly LinkedList]]></category>
		<category><![CDATA[Linked List]]></category>
		<category><![CDATA[Node]]></category>
		<category><![CDATA[Node Chain]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3055</guid>
		<description><![CDATA[Here we are going to talk about algorithms and data structures using CSharp. Here we will see the most common data structures used in the programming languages and the algorithms that are associated with these data structures. Let’s start off with the most basic nodes and linked list data structure. Nodes and Nodes Chain This [...]]]></description>
				<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/142.png" width="240" title="Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" alt="142 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" />
		</p><p>Here we are going to talk about algorithms and data structures using CSharp. Here we will see the most common data structures used in the programming languages and the algorithms that are associated with these data structures. Let’s start off with the most basic nodes and linked list data structure.</p>
<h1>Nodes and Nodes Chain</h1>
<p>This is the basic building block of most of the data structures we will be seeing here. We will then see how these nodes link up together to form the Node chains and then how these node chains form the basics of the Linked Lists. We will also see Linked list and extensions of Linked list and how the linked list is structured in .NET.</p>
<p>The node provides two functions</p>
<ul>
<li>It provides a mechanism to hold a piece of data.</li>
<li>It provides a mechanism to hold the object reference of the next node. Also known as the Next pointer for the Node.</li>
</ul>
<p>As we can see in the image below we have a Node with value 3 and a next pointer which is currently pointing to nothing.</p>
<div id="attachment_3056" class="wp-caption alignnone" style="width: 177px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/114.png"><img class="size-full wp-image-3056" title="C# Node" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/114.png" alt="114 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="167" height="90" /></a><p class="wp-caption-text">C# Node</p></div>
<p>Now let’s create another node with value 5. The next pointer of this node is null as well.</p>
<p>&nbsp;</p>
<div id="attachment_3057" class="wp-caption alignnone" style="width: 177px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/212.png"><img class="size-full wp-image-3057" title="C# Node" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/212.png" alt="212 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="167" height="90" /></a><p class="wp-caption-text">C# Node</p></div>
<p>Now if you join these nodes and set the next pointer of the first node as the second node we could see something like below.</p>
<p>&nbsp;</p>
<div id="attachment_3058" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/312.png"><img class="size-medium wp-image-3058" title="C# Node Chain" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/312-300x65.png" alt="312 300x65 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="65" /></a><p class="wp-caption-text">C# Node Chain</p></div>
<p>Let’s create another node and link the next pointer of the second node to the third node.</p>
<p>&nbsp;</p>
<div id="attachment_3059" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/44.png"><img class="size-medium wp-image-3059" title="C# Node Chain" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/44-300x59.png" alt="44 300x59 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="59" /></a><p class="wp-caption-text">C# Node Chain</p></div>
<p>We have seen above this will work functionally. Now let’s write some code for the same.</p>
<p>Create a new console project named Nodes Application. Create a class named Node with the following code. As we saw the above the node class has 2 responsibilities: to hold a value (an integer in this case) and a pointer to the next node in the chain.</p>
<p>&nbsp;</p>
<div id="attachment_3060" class="wp-caption alignnone" style="width: 177px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/53.png"><img class="size-full wp-image-3060" title="C# Node Class" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/53.png" alt="53 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="167" height="90" /></a><p class="wp-caption-text">C# Node Class</p></div>
<p>Now let’s use the node class to create the first node and the second node. So we have node with value 1 and a null next pointer and a second node with value 2 and a null next pointer</p>
<p>&nbsp;</p>
<div id="attachment_3061" class="wp-caption alignnone" style="width: 280px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/63.png"><img class="size-full wp-image-3061" title="C# Create Node" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/63.png" alt="63 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="270" height="167" /></a><p class="wp-caption-text">C# Create Node</p></div>
<p>But these nodes are still not a chain. To make these nodes as a chain we need to create set the next pointer of the first node as the second node.</p>
<p>&nbsp;</p>
<div id="attachment_3062" class="wp-caption alignnone" style="width: 282px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/73.png"><img class="size-full wp-image-3062" title="C# Set Node Next Pointer" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/73.png" alt="73 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="272" height="90" /></a><p class="wp-caption-text">C# Set Node Next Pointer</p></div>
<p>Now let’s create the third and node and set the next pointer of the second node to this third node.</p>
<p>&nbsp;</p>
<div id="attachment_3063" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/83.png"><img class="size-medium wp-image-3063" title="C# Set Node Next Pointer" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/83-300x125.png" alt="83 300x125 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="125" /></a><p class="wp-caption-text">C# Set Node Next Pointer</p></div>
<p>As we have the chain of 3 nodes now, let’s print the nodes. We pass the first node as the parameter to the print method and enumerate and print through it till the next reference of the node becomes null.</p>
<p>&nbsp;</p>
<div id="attachment_3064" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/93.png"><img class="size-medium wp-image-3064" title="C# print Node Chain" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/93-300x116.png" alt="93 300x116 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="116" /></a><p class="wp-caption-text">C# print Node Chain</p></div>
<p>Let’s call this print method.</p>
<p>&nbsp;</p>
<div id="attachment_3065" class="wp-caption alignnone" style="width: 189px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/103.png"><img class="size-full wp-image-3065" title="C# print Node Chain" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/103.png" alt="103 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="179" height="90" /></a><p class="wp-caption-text">C# print Node Chain</p></div>
<p>The result that we will see on running the application is as below.</p>
<p>&nbsp;</p>
<div id="attachment_3066" class="wp-caption alignnone" style="width: 56px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/115.png"><img class="size-full wp-image-3066" title="C# print Node Chain" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/115.png" alt="115 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="46" height="71" /></a><p class="wp-caption-text">C# print Node Chain</p></div>
<p>&nbsp;</p>
<h1>Linked Lists</h1>
<p>A Linked List is a single chain of nodes. Linked list have a well-known starting point known as the head and the list provides the pointer to the first node of the list. Linked list also exposes a pointer to the last node of the list known as the tail. And also liked list provides operations that allow linked list to be managed, searched and enumerated. These are the operations make the list truly useful as a collection.</p>
<h2>Add to Front</h2>
<p>The first operations that you are most likely to perform on the list is adding and item to the list, so let’s have a look as to how we can an item to the front of the list. We would start from an empty linked list. A linked list is nothing but a single node chain with head and tail pointers initially set as null. The first step to adding a node is allocating the value to the node. Let’s assume we have assigned a value of 3 to the node. Now next thing to do is to point the head and tail of the linked list to this node as the list has only one item</p>
<p>&nbsp;</p>
<div id="attachment_3067" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/116.png"><img class="size-medium wp-image-3067" title="LinkedList Add To Front" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/116-300x192.png" alt="116 300x192 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="192" /></a><p class="wp-caption-text">LinkedList Add To Front</p></div>
<p>Now if we add another node at the front of this Linked list then we need to do 2 things.</p>
<ul>
<li>Assign the next pointer of the new node to the node after it.</li>
<li>Set the head pointer to this node as this node is added at the front of this list.</li>
</ul>
<p>We are adding the node to the end of the list so we do not need to change the tail pointer of the list.</p>
<p>&nbsp;</p>
<div id="attachment_3068" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/213.png"><img class="size-medium wp-image-3068" title="LinkedList Add To Front" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/213-300x127.png" alt="213 300x127 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="127" /></a><p class="wp-caption-text">LinkedList Add To Front</p></div>
<p>Let’s have a look at the code for this. The first thing that we do is store the head node into a temporary variable and then point the head pointer to the new node being added to the front of the list. Also we point the next pointer of the head node to the temp so that the rest of the list added behind the new node. If the linked list has only one node then the node has the same pointer as tail.</p>
<p>&nbsp;</p>
<div id="attachment_3069" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/313.png"><img class="size-medium wp-image-3069" title="LinkedList Add To Front Code" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/313-300x230.png" alt="313 300x230 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="230" /></a><p class="wp-caption-text">LinkedList Add To Front Code</p></div>
<p>This operation is very easy and the complexity of this operation is constant no matter how many nodes exist. If this was an array then this operation would be very complex as each item would be moved to the next position.</p>
<h2>Add to End</h2>
<p>The process of adding a node to the end is similar to adding to the front. The difference here is that when we are adding the second node we need to set the tail pointer instead of the head pointer.</p>
<div id="attachment_3070" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/45.png"><img class="size-medium wp-image-3070" title="LinkedList Add To End" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/45-300x127.png" alt="45 300x127 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="127" /></a><p class="wp-caption-text">LinkedList Add To End</p></div>
<p>Let’s see the code for this. There are only 2 cases if a new node is added to the empty list or non-empty list.</p>
<ul>
<li>If the list is empty we point the head pointer to the node.</li>
<li>If the list is not empty then the node being added is added to the end.</li>
</ul>
<p>In either case the tail pointer points to the added node and the counter which keeps track of the number of nodes in the list.</p>
<p>&nbsp;</p>
<div id="attachment_3071" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/54.png"><img class="size-medium wp-image-3071" title="LinkedList Add To End Code" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/54-300x266.png" alt="54 300x266 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="266" /></a><p class="wp-caption-text">LinkedList Add To End Code</p></div>
<h2>Remove at the End</h2>
<p>Like add the node can be removed from the front or the end. Let’s take an example of the list which has 3 elements as shown below. To remove 7 from the list we need to node and delete all references to the node as well. This seems simple.</p>
<p>&nbsp;</p>
<div id="attachment_3072" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/64.png"><img class="size-medium wp-image-3072" title="LinkedList Remove at End" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/64-300x109.png" alt="64 300x109 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="109" /></a><p class="wp-caption-text">LinkedList Remove at End</p></div>
<p>The way that it will look after the removal of the 7 node is as below.</p>
<p>&nbsp;</p>
<div id="attachment_3073" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/74.png"><img class="size-medium wp-image-3073" title="LinkedList Remove at End" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/74-300x139.png" alt="74 300x139 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="139" /></a><p class="wp-caption-text">LinkedList Remove at End</p></div>
<p>Let’s see the code for removing the element at the end of the list. We need to update the second last element in the list and this will require us to iterate through the list and this operation will increase in complexity along with the number of elements in the list.</p>
<p>&nbsp;</p>
<div id="attachment_3074" class="wp-caption alignnone" style="width: 289px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/84.png"><img class="size-medium wp-image-3074" title="LinkedList Remove at End Code" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/84-279x300.png" alt="84 279x300 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="279" height="300" /></a><p class="wp-caption-text">LinkedList Remove at End Code</p></div>
<h2>Remove at the Front</h2>
<p>Remove a node from the front is fairly simple as it just involves setting the head pointer of the list to the second node.</p>
<p>&nbsp;</p>
<div id="attachment_3075" class="wp-caption alignnone" style="width: 206px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/94.png"><img class="size-full wp-image-3075" title="LinkedList Remove at Front Code" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/94.png" alt="94 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="196" height="198" /></a><p class="wp-caption-text">LinkedList Remove at Front Code</p></div>
<h2>Enumerating a List</h2>
<p>Another major operation in the list is enumeration. Enumerating over the list done very frequently as most of the time you are not dealing with the first element in the list. The key to enumeration is have a next pointer available to the next node. Lets enumerate the list as shown below.</p>
<p>&nbsp;</p>
<div id="attachment_3076" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/104.png"><img class="size-medium wp-image-3076" title="Enumerating a List" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/104-300x107.png" alt="104 300x107 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="107" /></a><p class="wp-caption-text">Enumerating a List</p></div>
<p>Let’s have a look at the code. We will use the Get Enumerator pattern using the C# yield syntax. In the while loop we keep track of the next node in a local variable named current. When the while loop starts then the current is set the first node of the list and since it is not null then the value of this node is yielded and the current is set to the next node and the cycle continues till current is null.</p>
<p>&nbsp;</p>
<div id="attachment_3077" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/117.png"><img class="size-medium wp-image-3077" title="Enumerating a List Code" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/117-300x65.png" alt="117 300x65 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="65" /></a><p class="wp-caption-text">Enumerating a List Code</p></div>
<h1>Doubly Linked List</h1>
<p>Doubly linked list is quite similar to the Single linked list the only difference is that we have two pointers in the nodes – one having a reference of the next node and one having a reference to the previous node. This makes it easier to add and remove items. It looks something like below.</p>
<p>&nbsp;</p>
<div id="attachment_3079" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/123.png"><img class="size-medium wp-image-3079" title="Doubly Linked List" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/123-300x51.png" alt="123 300x51 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="51" /></a><p class="wp-caption-text">Doubly Linked List</p></div>
<p>Let’s see the implementation of a doubly linked list. You would see in the code that the implementation is not a lot different from the singly linked list. The doubly linked list node class just has an additional pointer to the previous node.</p>
<p>&nbsp;</p>
<div id="attachment_3080" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/132.png"><img class="size-medium wp-image-3080" title="Doubly Linked List Code" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/132-300x241.png" alt="132 300x241 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="241" /></a><p class="wp-caption-text">Doubly Linked List Code</p></div>
<p>The implementation of the other method will also change accordingly. You can a look at the code and analyze the same.</p>
<p>Everything we just implemented is present in the .NET generic class named LinkedList.</p>
<p>&nbsp;</p>
<div id="attachment_3081" class="wp-caption alignnone" style="width: 310px"><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/07/142.png"><img class="size-medium wp-image-3081" title=".NET Linked List Class" src="http://www.abhishekshukla.com/wp-content/uploads/2012/07/142-300x127.png" alt="142 300x127 Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" width="300" height="127" /></a><p class="wp-caption-text">.NET Linked List Class</p></div>
<p>The souce code for this post can be found <a target="_blank" href="http://i.minus.com/1341996476/Jcyk0Ka6zgIKeEA44uYeUA/dbuOUcBjGH4bCZ/LearnDataStructures.zip">here</a>.</p>
<div style="min-height:33px;" class="really_simple_share really_simple_share_button robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:100px;"><iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.abhishekshukla.com%2Falgorithm-and-data-structures%2Falgorithm-and-data-structures-node-node-chain-linked-list-doubly-linkedlist-net-linkedlist%2F&amp;send=false&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;height=27&amp;locale=en_US" 
							scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:27px;" allowTransparency="true"></iframe></div><div class="really_simple_share_twitter" style="width:100px;"><a target="_blank" href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="Algorithm and Data Structures in C# : Node, Node Chain, Linked List, Doubly LinkedList, .NET LinkedList" data-url="http://www.abhishekshukla.com/algorithm-and-data-structures/algorithm-and-data-structures-node-node-chain-linked-list-doubly-linkedlist-net-linkedlist/" 
						data-via=""  ></a></div><div class="really_simple_share_google1" style="width:80px;"><div class="g-plusone" data-size="medium" data-href="http://www.abhishekshukla.com/algorithm-and-data-structures/algorithm-and-data-structures-node-node-chain-linked-list-doubly-linkedlist-net-linkedlist/" ></div></div></div>
		<div style="clear:both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/algorithm-and-data-structures/algorithm-and-data-structures-node-node-chain-linked-list-doubly-linkedlist-net-linkedlist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
