<?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>Science Dictionary &#187; Index B</title>
	<atom:link href="http://www.mysciencedictionary.com/category/index-b/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysciencedictionary.com</link>
	<description>Definition of Education</description>
	<lastBuildDate>Mon, 16 Aug 2010 06:24:45 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Binary Search Program</title>
		<link>http://www.mysciencedictionary.com/binary-search-program/</link>
		<comments>http://www.mysciencedictionary.com/binary-search-program/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 09:11:03 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index B]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[C++ Program]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=439</guid>
		<description><![CDATA[Source Code of Binary Search, provide you also the .CPP file for direct download, direct run in Compiler]]></description>
			<content:encoded><![CDATA[<h2><span style="font-size: small;">Here is the Program of Binary Search</span></h2>
<p style="text-align: justify;">Searching refers to Search an element in a given Array whether elements are in Ascending Order or Descending Order, <strong>Binary Search</strong> is also a type of Searching Technique.</p>
<p>See below the <strong>Source Code of Binary Search</strong></p>
<blockquote>
<pre>void main()
{
 clrscr();
 int a[10],i,n,m,l=0,h=9;
 cout&lt;&lt;"\n\n\n\t Enter 10 Values in ascending order:\t";
 for(i=0;i&lt;=9;i++)
 cin&gt;&gt;a[i];
 cout&lt;&lt;"\n\n\t\t Enter a value to be searched :\t";
 cin&gt;&gt;n;
 while(l&lt;=h)
 {
  m=(l+h)/2;
  if(a[m]==n)     ...... [ <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/binary-search.CPP" target="_blank">Read More</a> ]</pre>
</blockquote>
<p>Direct Download [.CPP format] &#8211; <a href="http://www.mysciencedictionary.com/wp-content/uploads/programs/binary-search.CPP" target="_blank">Binary Search Program</a></p>
<p>[To download file, just Right Click and click Save Target As]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/binary-search-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bubble Sort Program</title>
		<link>http://www.mysciencedictionary.com/bubble-sort-program/</link>
		<comments>http://www.mysciencedictionary.com/bubble-sort-program/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 18:28:28 +0000</pubDate>
		<dc:creator>aman</dc:creator>
				<category><![CDATA[Index B]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[C++ Program]]></category>

		<guid isPermaLink="false">http://www.mysciencedictionary.com/?p=333</guid>
		<description><![CDATA[Source Code of Bubble Sort, provide you also the .CPP file for direct download, direct run in Compiler]]></description>
			<content:encoded><![CDATA[<h2><span style="font-size: small;">Here is the Program of Bubble Sort</span></h2>
<p style="text-align: justify;">Sorting refers to arranging elements of an Array in increment or in decrement order, <strong>Bubble Sort</strong> is also a type of sorting technique.</p>
<p>See below the <strong>Source Code of Bubble Sort</strong></p>
<blockquote><p>
void main()<br />
{<br />
clrscr();<br />
int a[10],i,j,temp;<br />
cout&lt;&lt;&#8221;\n\n\t Enter 10 Values :\t&#8221;;<br />
for(i=0;i&lt;=9;i++)<br />
{<br />
cin&gt;&gt;a[i];<br />
}<br />
for(i=0;i&lt;=9;i++)      &#8230;&#8230; [ <a href="http://www.mysciencedictionary.com/wp-content/uploads/2009/09/bubble-sort.CPP" target="_blank">Read More</a> ]
</p></blockquote>
<p>Direct Download [.CPP format] &#8211; <a href="http://www.mysciencedictionary.com/wp-content/uploads/2009/09/bubble-sort.CPP" target="_blank">Bubble Sort Program</a></p>
<p>[To download file, just Right Click and click Save Target As]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mysciencedictionary.com/bubble-sort-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

