<?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>graphics program | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/graphics-program/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 10 Dec 2022 04:31:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>Sorting of numbers</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/sorting-of-numbers/</link>
					<comments>https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/sorting-of-numbers/#comments</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Tue, 04 Nov 2008 09:34:34 +0000</pubDate>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[Selection sort]]></category>
		<category><![CDATA[Bubble sort]]></category>
		<category><![CDATA[Insertion sort]]></category>
		<category><![CDATA[c program]]></category>
		<category><![CDATA[graphics program]]></category>
		<category><![CDATA[demo in sorting]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=44</guid>

					<description><![CDATA[<p>Sorting means arranging a set of data in some order. There are different methods that are used to sort the data in ascending order. Some of the  methods are Selection sort Bubble sort Insertion sort 1. Selection sort Here, to sort the data in ascending order, the 0th element is compared with all other elements.</p>
<p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/sorting-of-numbers/">Sorting of numbers</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Sorting means arranging a set of data in some order. There are different methods that are used to sort the data in ascending order. Some of the  methods are</p>
<ol>
<li> Selection sort</li>
<li> Bubble sort</li>
<li> Insertion sort</li>
</ol>
<p><strong>1. Selection sort</strong></p>
<p>Here, to sort the data in ascending order, the 0th element is compared with all other elements. If it is greater than the compared element then they are interchanged. So after the first iteration smallest element is placed at the 0th position. The same procedure is repeated for the 1st element and so on. <a href="https://studentprojects.in/source-codes/software-programs/c/sorting-programs/program-to-sort-the-numbers-using-selection-sort/">Read more&#8230;</a></p>
<p><strong>2. Bubble sort</strong></p>
<p>Here, to sort the data in ascending order, 0th element is compared with the 1st element. If it is greater than the 1st element then they are interchanged else remains same. Then 1st element is compared with 2nd element and procedure is continued. So after the first iteration largest element is placed at the last position. In the second iteration, the comparisons are made till the last but one position and now second largest element is placed at the second last position. After all the iterations, the list becomes sorted. <a href="https://studentprojects.in/source-codes/software-programs/c/sorting-programs/program-to-sort-the-numbers-using-bubble-sort/">Read more&#8230;</a></p>
<p><strong>3. Insertion sort</strong></p>
<p>Here, sorting takes place by inserting a particular element at the appropriate position. To sort the element in ascending order, in first iteration,1st element is compared with the 0th element. In the second iteration 2nd element is compared with 0th and 1st element. In general, in every iteration an element is compared with all the elements before it. While comparing if it is found that the element in question can be inserted at a suitable position, then space is created for it by shifting the other element one position to the right and inserting the element at the suitable position. This procedure is repeated for all the elements in the list. <a href="../source-codes/software-programs/c/sorting-programs/program-to-sort-the-numbers-using-insertion-sort/">Read more&#8230;</a></p>
<p>In my program, you can enter 5 numbers which are to be sorted by any one of the above methods. After entering the numbers they are shown in red colour box and while comparison is done, the two elements which are compared are shown in green colour box. After sorting the elements, their permanent position is indicated by blue colour box. <a href="https://studentprojects.in/wp-content/uploads/2008/11/sort.zip">Click here to download the program</a>.</p><p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/sorting-of-numbers/">Sorting of numbers</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/sorting-of-numbers/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
