<?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++ program to implement Heap sort Algorithm	</title>
	<atom:link href="https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 14 Mar 2015 12:51:11 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: Nitin Kumar		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/comment-page-1/#comment-88890</link>

		<dc:creator><![CDATA[Nitin Kumar]]></dc:creator>
		<pubDate>Sat, 14 Mar 2015 12:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1240#comment-88890</guid>

					<description><![CDATA[&lt;a href=&quot;http://www.easycppcodes.com/sorting/heap-sort-in-c/&quot; rel=&quot;nofollow&quot;&gt;Better way to implement Heap Sort&lt;/a&gt;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.easycppcodes.com/sorting/heap-sort-in-c/" rel="nofollow">Better way to implement Heap Sort</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Software Engineer		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/comment-page-1/#comment-76867</link>

		<dc:creator><![CDATA[Software Engineer]]></dc:creator>
		<pubDate>Thu, 29 Jan 2015 16:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1240#comment-76867</guid>

					<description><![CDATA[very bad coding .....]]></description>
			<content:encoded><![CDATA[<p>very bad coding &#8230;..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: nicky		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/comment-page-1/#comment-38654</link>

		<dc:creator><![CDATA[nicky]]></dc:creator>
		<pubDate>Sat, 18 Oct 2014 06:37:28 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1240#comment-38654</guid>

					<description><![CDATA[what is the time complexity is it O(nlogn) or O(n*n). your using two for loops.]]></description>
			<content:encoded><![CDATA[<p>what is the time complexity is it O(nlogn) or O(n*n). your using two for loops.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Debabrat		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/comment-page-1/#comment-9858</link>

		<dc:creator><![CDATA[Debabrat]]></dc:creator>
		<pubDate>Sun, 30 Jun 2013 02:54:37 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1240#comment-9858</guid>

					<description><![CDATA[write a program for priority queue. where all the property will satisfy that means maximum, heap increase key, insertition, deletion , return max operation should present?]]></description>
			<content:encoded><![CDATA[<p>write a program for priority queue. where all the property will satisfy that means maximum, heap increase key, insertition, deletion , return max operation should present?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Andre		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/comment-page-1/#comment-9601</link>

		<dc:creator><![CDATA[Andre]]></dc:creator>
		<pubDate>Wed, 13 Mar 2013 01:39:48 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1240#comment-9601</guid>

					<description><![CDATA[Correct me if I am wrong, instead of 

while ( s &#062; 0 &#038;&#038; arr[f]  0 &#038;&#038; arr[f] &#060; val )
		{
			arr[s] = arr[f] ;
			s = f ;
			f = ( s - 1 ) / 2 ;
		}
		arr[s] = val ;
void array :: makeheap(int c)
{
 
	for ( int i = 1 ; i  0 &#038;&#038; arr[f] &#060; val )
		{
			swap(arr, s, f)
			s = f ;
			f = ( s - 1 ) / 2 ;
		}
	}
}]]></description>
			<content:encoded><![CDATA[<p>Correct me if I am wrong, instead of </p>
<p>while ( s &gt; 0 &amp;&amp; arr[f]  0 &amp;&amp; arr[f] &lt; val )<br />
		{<br />
			arr[s] = arr[f] ;<br />
			s = f ;<br />
			f = ( s &#8211; 1 ) / 2 ;<br />
		}<br />
		arr[s] = val ;<br />
void array :: makeheap(int c)<br />
{</p>
<p>	for ( int i = 1 ; i  0 &amp;&amp; arr[f] &lt; val )<br />
		{<br />
			swap(arr, s, f)<br />
			s = f ;<br />
			f = ( s &#8211; 1 ) / 2 ;<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: shani		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/comment-page-1/#comment-9051</link>

		<dc:creator><![CDATA[shani]]></dc:creator>
		<pubDate>Tue, 09 Oct 2012 14:01:25 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1240#comment-9051</guid>

					<description><![CDATA[plz write the code 4 heap sort tht takes input data frm the txt file]]></description>
			<content:encoded><![CDATA[<p>plz write the code 4 heap sort tht takes input data frm the txt file</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: goutham		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/comment-page-1/#comment-9042</link>

		<dc:creator><![CDATA[goutham]]></dc:creator>
		<pubDate>Mon, 08 Oct 2012 11:12:25 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1240#comment-9042</guid>

					<description><![CDATA[please use some meaningfull variable names]]></description>
			<content:encoded><![CDATA[<p>please use some meaningfull variable names</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aristotle Doria		</title>
		<link>https://studentprojects.in/software-development/cpp/cpp-programs/cpp-basic/c-program-to-implement-heap-sort-algorithm/comment-page-1/#comment-8998</link>

		<dc:creator><![CDATA[Aristotle Doria]]></dc:creator>
		<pubDate>Mon, 01 Oct 2012 01:36:54 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1240#comment-8998</guid>

					<description><![CDATA[It&#039;s output is just the same with those in the selection sort. Does the code also works for the selection sort or only for heap sort?]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s output is just the same with those in the selection sort. Does the code also works for the selection sort or only for heap sort?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
