<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Array module in Erlang</title>
	<atom:link href="http://ruslanspivak.com/2008/04/13/array-module-in-erlang/feed/" rel="self" type="application/rss+xml" />
	<link>http://ruslanspivak.com/2008/04/13/array-module-in-erlang/</link>
	<description>Musings on dynamic languages and more than that</description>
	<lastBuildDate>Fri, 30 Apr 2010 17:09:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Ruslan Spivak</title>
		<link>http://ruslanspivak.com/2008/04/13/array-module-in-erlang/#comment-573</link>
		<dc:creator>Ruslan Spivak</dc:creator>
		<pubDate>Wed, 14 Apr 2010 04:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.wordpress.com/?p=28#comment-573</guid>
		<description>Hi Witold,

I&#039;m not encouraging to use binsearch for lists in Erlang, that was just my experiment :)

Actually I wrote about the fact that linear search is faster for lists in Erlang than binsearch:
http://ruslanspivak.com/2007/08/17/more-about-binary-search-in-erlang/</description>
		<content:encoded><![CDATA[<p>Hi Witold,</p>
<p>I&#8217;m not encouraging to use binsearch for lists in Erlang, that was just my experiment :)</p>
<p>Actually I wrote about the fact that linear search is faster for lists in Erlang than binsearch:<br />
<a href="http://ruslanspivak.com/2007/08/17/more-about-binary-search-in-erlang/" rel="nofollow">http://ruslanspivak.com/2007/08/17/more-about-binary-search-in-erlang/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Witold Baryluk</title>
		<link>http://ruslanspivak.com/2008/04/13/array-module-in-erlang/#comment-572</link>
		<dc:creator>Witold Baryluk</dc:creator>
		<pubDate>Wed, 14 Apr 2010 04:15:53 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.wordpress.com/?p=28#comment-572</guid>
		<description>Using binsearch for lists isn&#039;t very clever (in fact it is stupid ;). For lists it is much better to just use linear search. Using binsearch of lists in erlang will lead to O(N^2) algorithm, instand of expected O(log N). Use linear search which is O(N), then compare.</description>
		<content:encoded><![CDATA[<p>Using binsearch for lists isn&#8217;t very clever (in fact it is stupid ;). For lists it is much better to just use linear search. Using binsearch of lists in erlang will lead to O(N^2) algorithm, instand of expected O(log N). Use linear search which is O(N), then compare.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
