<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: C++ programs for the implementation of Depth-first search(DFS) for a given graph	</title>
	<atom:link href="https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 19 Sep 2015 14:51:05 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: ersan ka		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-131740</link>

		<dc:creator><![CDATA[ersan ka]]></dc:creator>
		<pubDate>Sat, 19 Sep 2015 14:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-131740</guid>

					<description><![CDATA[tree should be am i right?
-------1
--/--- &#124;--- \
-2 ----4 ---5
/ \ ----&#124; ******5 to 7 is backward edge
3 6--- 7
---------&#124;
---------8
---------&#124;
---------9

my question is how can I separate for 3 table?
table 1 should include 1, 2, 3, 6
table 2 should include 2, 4, 8, 9
table 3 should include 5]]></description>
			<content:encoded><![CDATA[<p>tree should be am i right?<br />
&#8212;&#8212;-1<br />
&#8211;/&#8212; |&#8212; \<br />
-2 &#8212;-4 &#8212;5<br />
/ \ &#8212;-| ******5 to 7 is backward edge<br />
3 6&#8212; 7<br />
&#8212;&#8212;&#8212;|<br />
&#8212;&#8212;&#8212;8<br />
&#8212;&#8212;&#8212;|<br />
&#8212;&#8212;&#8212;9</p>
<p>my question is how can I separate for 3 table?<br />
table 1 should include 1, 2, 3, 6<br />
table 2 should include 2, 4, 8, 9<br />
table 3 should include 5</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ersan ka		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-131739</link>

		<dc:creator><![CDATA[ersan ka]]></dc:creator>
		<pubDate>Sat, 19 Sep 2015 14:48:49 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-131739</guid>

					<description><![CDATA[tree should be am i right?
                                     1
                            /        &#124;          \
                          2         4           5
                      /     \         &#124;                               5 to 7 is backward edge
                  3         6        7
                                        &#124;
                                        8
                                        &#124;
                                        9                               


my question is how can I separate for 3 table?
table 1 should include 1, 2, 3, 6
table 2 should include 2, 4, 8, 9
table 3 should include 5]]></description>
			<content:encoded><![CDATA[<p>tree should be am i right?<br />
                                     1<br />
                            /        |          \<br />
                          2         4           5<br />
                      /     \         |                               5 to 7 is backward edge<br />
                  3         6        7<br />
                                        |<br />
                                        8<br />
                                        |<br />
                                        9                               </p>
<p>my question is how can I separate for 3 table?<br />
table 1 should include 1, 2, 3, 6<br />
table 2 should include 2, 4, 8, 9<br />
table 3 should include 5</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nitin Kumar		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-90811</link>

		<dc:creator><![CDATA[Nitin Kumar]]></dc:creator>
		<pubDate>Fri, 20 Mar 2015 10:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-90811</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-10395&quot;&gt;ashu&lt;/a&gt;.

&lt;a href=&quot;http://www.easycppcodes.com/trees/program-implement-depth-first-search-cpp/&quot; rel=&quot;nofollow&quot;&gt;Better Code with proper explanation&lt;/a&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-10395">ashu</a>.</p>
<p><a href="http://www.easycppcodes.com/trees/program-implement-depth-first-search-cpp/" rel="nofollow">Better Code with proper explanation</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: BrenBren		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-78567</link>

		<dc:creator><![CDATA[BrenBren]]></dc:creator>
		<pubDate>Tue, 03 Feb 2015 03:10:07 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-78567</guid>

					<description><![CDATA[i love this soo much! i love my indian *.* muwah muwah]]></description>
			<content:encoded><![CDATA[<p>i love this soo much! i love my indian *.* muwah muwah</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonelle		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-78564</link>

		<dc:creator><![CDATA[Jonelle]]></dc:creator>
		<pubDate>Tue, 03 Feb 2015 03:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-78564</guid>

					<description><![CDATA[this program is awesome, the english was shit]]></description>
			<content:encoded><![CDATA[<p>this program is awesome, the english was shit</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: rahul manjinder		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-45563</link>

		<dc:creator><![CDATA[rahul manjinder]]></dc:creator>
		<pubDate>Tue, 04 Nov 2014 18:17:14 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-45563</guid>

					<description><![CDATA[plz expalin this program every step with comments plzzzzzzz
and reply me on my e-mail.it&#039;s a request not an order]]></description>
			<content:encoded><![CDATA[<p>plz expalin this program every step with comments plzzzzzzz<br />
and reply me on my e-mail.it&#8217;s a request not an order</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: raheel		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-43884</link>

		<dc:creator><![CDATA[raheel]]></dc:creator>
		<pubDate>Fri, 31 Oct 2014 08:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-43884</guid>

					<description><![CDATA[umara it uses stack methode]]></description>
			<content:encoded><![CDATA[<p>umara it uses stack methode</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: amara		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-12932</link>

		<dc:creator><![CDATA[amara]]></dc:creator>
		<pubDate>Sat, 14 Jun 2014 17:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-12932</guid>

					<description><![CDATA[i can&#039;t understand this.....]]></description>
			<content:encoded><![CDATA[<p>i can&#8217;t understand this&#8230;..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: amara		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-12931</link>

		<dc:creator><![CDATA[amara]]></dc:creator>
		<pubDate>Sat, 14 Jun 2014 17:25:34 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-12931</guid>

					<description><![CDATA[explanation plz.....]]></description>
			<content:encoded><![CDATA[<p>explanation plz&#8230;..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sadhna		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-data-structure/c-programs-for-the-implementation-of-depth-first-searchdfs-for-a-given-graph/comment-page-1/#comment-10508</link>

		<dc:creator><![CDATA[sadhna]]></dc:creator>
		<pubDate>Wed, 09 Apr 2014 17:58:19 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1019#comment-10508</guid>

					<description><![CDATA[need explation thank you]]></description>
			<content:encoded><![CDATA[<p>need explation thank you</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
