<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.5" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: What is a Binary seach algorithm and how does it work?</title>
	<link>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/</link>
	<description>Data structures, algorithms, e-books, usefull code and so on...</description>
	<pubDate>Fri, 05 Sep 2008 21:30:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>

	<item>
		<title>by: Sandeep</title>
		<link>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-91</link>
		<pubDate>Thu, 03 May 2007 13:40:41 +0000</pubDate>
		<guid>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-91</guid>
					<description>Hey!!! Why are you putting the binary search algorithm in tree format? What you have presented is the binary search tree one....</description>
		<content:encoded><![CDATA[<p>Hey!!! Why are you putting the binary search algorithm in tree format? What you have presented is the binary search tree one&#8230;.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: jason</title>
		<link>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-76</link>
		<pubDate>Sat, 14 Apr 2007 05:54:17 +0000</pubDate>
		<guid>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-76</guid>
					<description>"Should the variable i not be set to the length of the array? in the above evample it it set to 0…this would then fail the “while(first"

while(0</description>
		<content:encoded><![CDATA[<p>&#8220;Should the variable i not be set to the length of the array? in the above evample it it set to 0…this would then fail the “while(first&#8221;</p>
<p>while(0
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Hemanth</title>
		<link>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-75</link>
		<pubDate>Sat, 14 Apr 2007 02:53:19 +0000</pubDate>
		<guid>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-75</guid>
					<description>Very good explaination. An other SIte I would like to share with ya is in the link above.</description>
		<content:encoded><![CDATA[<p>Very good explaination. An other SIte I would like to share with ya is in the link above.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: craig</title>
		<link>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-70</link>
		<pubDate>Fri, 13 Apr 2007 19:10:11 +0000</pubDate>
		<guid>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-70</guid>
					<description>Should the variable i not be set to the length of the array? in the above evample it it set to 0...this would then fail the "while(first</description>
		<content:encoded><![CDATA[<p>Should the variable i not be set to the length of the array? in the above evample it it set to 0&#8230;this would then fail the &#8220;while(first
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Ameen</title>
		<link>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-56</link>
		<pubDate>Mon, 12 Mar 2007 22:08:57 +0000</pubDate>
		<guid>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-56</guid>
					<description>Thanks,

Very nice explaination :-)</description>
		<content:encoded><![CDATA[<p>Thanks,</p>
<p>Very nice explaination <img src='http://www.datastructures.info/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Kaveirious</title>
		<link>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-35</link>
		<pubDate>Fri, 09 Feb 2007 04:02:34 +0000</pubDate>
		<guid>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-35</guid>
					<description>Hi there

some free/libre programming books:

Programming Languages (by Scott F. Smith):
http://www.cs.jhu.edu/~scott/plbook/book/book.pdf

Programming Languages: Application and Interpretation:
http://www.cs.brown.edu/~sk/Publications/Books/ProgLangs/PDF/plai-2006-01-15.pdf</description>
		<content:encoded><![CDATA[<p>Hi there</p>
<p>some free/libre programming books:</p>
<p>Programming Languages (by Scott F. Smith):<br />
<a href="http://www.cs.jhu.edu/~scott/plbook/book/book.pdf" rel="nofollow">http://www.cs.jhu.edu/~scott/plbook/book/book.pdf</a></p>
<p>Programming Languages: Application and Interpretation:<br />
<a href="http://www.cs.brown.edu/~sk/Publications/Books/ProgLangs/PDF/plai-2006-01-15.pdf" rel="nofollow">http://www.cs.brown.edu/~sk/Publications/Books/ProgLangs/PDF/plai-2006-01-15.pdf</a>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Ram singh</title>
		<link>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-22</link>
		<pubDate>Tue, 30 Jan 2007 09:24:17 +0000</pubDate>
		<guid>http://www.datastructures.info/what-is-a-binary-seach-algorithm-and-how-does-it-work/#comment-22</guid>
					<description>Binary search is good algorithm for searching in a sorted array but can not be applied to unsorted list.</description>
		<content:encoded><![CDATA[<p>Binary search is good algorithm for searching in a sorted array but can not be applied to unsorted list.
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
