<?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: Introduction to Recursion in C++</title>
	<atom:link href="http://talkbinary.com/programming/c/introduction-to-recursion-in-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/</link>
	<description>Programming Resources, Technology, Computers</description>
	<lastBuildDate>Wed, 18 Jan 2012 02:15:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Diego Villasenor</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-27423</link>
		<dc:creator>Diego Villasenor</dc:creator>
		<pubDate>Sun, 29 May 2011 01:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-27423</guid>
		<description>This algorithm goes through the commands sequentially. So it will proceed with mergesort(a,0,2) until it returns a result. So yes, it would be broken down to mergesort(a, 0,1) and would compute that as well.


*Not sure if it would be 0,1 but you should understand what I&#039;m referring too. Let me know if you have any additional questions. :)</description>
		<content:encoded><![CDATA[<p>This algorithm goes through the commands sequentially. So it will proceed with mergesort(a,0,2) until it returns a result. So yes, it would be broken down to mergesort(a, 0,1) and would compute that as well.</p>
<p>*Not sure if it would be 0,1 but you should understand what I&#8217;m referring too. Let me know if you have any additional questions. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Singhashutosh90</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-27422</link>
		<dc:creator>Singhashutosh90</dc:creator>
		<pubDate>Sat, 28 May 2011 13:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-27422</guid>
		<description>Can anyone please explain how recursion works in case of mergesort.

MERGE-SORT(A, p, r )if p &lt; r  Check for base casethen q ←	(p + r)/2MERGE-SORT(A, p, q)  MERGE-SORT(A, q + 1, r )  MERGE(A, p, q, r )

In the above algo suppose array is {1,3,2,4,5}. So first mergesort(a,0,2) is passed then does execution proceeds to next line or it waits for result of mergesort(a,0,2). If it does wait then it will again pass (a,0,1) and so on...

Please explain...</description>
		<content:encoded><![CDATA[<p>Can anyone please explain how recursion works in case of mergesort.</p>
<p>MERGE-SORT(A, p, r )if p &lt; r  Check for base casethen q ←	(p + r)/2MERGE-SORT(A, p, q)  MERGE-SORT(A, q + 1, r )  MERGE(A, p, q, r )</p>
<p>In the above algo suppose array is {1,3,2,4,5}. So first mergesort(a,0,2) is passed then does execution proceeds to next line or it waits for result of mergesort(a,0,2). If it does wait then it will again pass (a,0,1) and so on&#8230;</p>
<p>Please explain&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diego</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-15647</link>
		<dc:creator>Diego</dc:creator>
		<pubDate>Wed, 10 Mar 2010 09:47:40 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-15647</guid>
		<description>@Abby

Thanks for coming. =) If you have anything else you&#039;d like to see just let me know. I plan on visiting these tutorials and changing the structure a bit.</description>
		<content:encoded><![CDATA[<p>@Abby</p>
<p>Thanks for coming. =) If you have anything else you&#8217;d like to see just let me know. I plan on visiting these tutorials and changing the structure a bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abby</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-15269</link>
		<dc:creator>abby</dc:creator>
		<pubDate>Thu, 04 Mar 2010 01:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-15269</guid>
		<description>ha this was helpful even though i&#039;ve been through it many times.. thanks!</description>
		<content:encoded><![CDATA[<p>ha this was helpful even though i&#8217;ve been through it many times.. thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diego</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-4948</link>
		<dc:creator>Diego</dc:creator>
		<pubDate>Wed, 03 Jun 2009 06:00:57 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-4948</guid>
		<description>Stay tuned, I&#039;ll be posting examples soon.</description>
		<content:encoded><![CDATA[<p>Stay tuned, I&#8217;ll be posting examples soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raja</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-4944</link>
		<dc:creator>raja</dc:creator>
		<pubDate>Wed, 03 Jun 2009 03:48:21 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-4944</guid>
		<description>plz give me useful n easy example of recursion.</description>
		<content:encoded><![CDATA[<p>plz give me useful n easy example of recursion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raja</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-27111</link>
		<dc:creator>raja</dc:creator>
		<pubDate>Wed, 03 Jun 2009 03:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-27111</guid>
		<description>plz give me useful n easy example of recursion.</description>
		<content:encoded><![CDATA[<p>plz give me useful n easy example of recursion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diego</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-1542</link>
		<dc:creator>Diego</dc:creator>
		<pubDate>Mon, 23 Feb 2009 05:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-1542</guid>
		<description>@Eric
Yes, the worst mistake people tend to do is trying to solve or create recursive solutions in their head. That&#039;s why I recommend drawing things out by hand like the drawing I created. :)</description>
		<content:encoded><![CDATA[<p>@Eric<br />
Yes, the worst mistake people tend to do is trying to solve or create recursive solutions in their head. That&#8217;s why I recommend drawing things out by hand like the drawing I created. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: College Experience</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-1540</link>
		<dc:creator>College Experience</dc:creator>
		<pubDate>Mon, 23 Feb 2009 04:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-1540</guid>
		<description>Recursion was really hard for me to understand at first. Just spend time writing out the algorithm and practice using it. It will be a lot simpler to understand =]</description>
		<content:encoded><![CDATA[<p>Recursion was really hard for me to understand at first. Just spend time writing out the algorithm and practice using it. It will be a lot simpler to understand =]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: College Experience</title>
		<link>http://talkbinary.com/programming/c/introduction-to-recursion-in-c/comment-page-1/#comment-27110</link>
		<dc:creator>College Experience</dc:creator>
		<pubDate>Mon, 23 Feb 2009 04:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://talkbinary.com/?p=1572#comment-27110</guid>
		<description>Recursion was really hard for me to understand at first. Just spend time writing out the algorithm and practice using it. It will be a lot simpler to understand =]</description>
		<content:encoded><![CDATA[<p>Recursion was really hard for me to understand at first. Just spend time writing out the algorithm and practice using it. It will be a lot simpler to understand =]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: talkbinary.com @ 2012-02-12 06:35:53 -->
