<?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 for Filip Ekberg&#039;s blog</title>
	<atom:link href="http://blog.smartit.se/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.smartit.se</link>
	<description>.NET Development is the future, are you prepared?</description>
	<lastBuildDate>Thu, 10 Jun 2010 16:42:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Communication issues when adapting outsourcing by Tyler Clarke</title>
		<link>http://blog.smartit.se/2008/12/14/communication-issues-when-adapting-outsourcing/comment-page-1/#comment-168</link>
		<dc:creator>Tyler Clarke</dc:creator>
		<pubDate>Thu, 10 Jun 2010 16:42:54 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/2008/12/14/communication-issues-when-adapting-outsourcing/#comment-168</guid>
		<description>There is a rapid growth of Outsorcing these days as manufactures try to cut cost and maximize profit.&#039;~`</description>
		<content:encoded><![CDATA[<p>There is a rapid growth of Outsorcing these days as manufactures try to cut cost and maximize profit.&#8217;~`</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big O-notation by JassiMostru</title>
		<link>http://blog.smartit.se/2008/08/18/big-o-notation/comment-page-1/#comment-167</link>
		<dc:creator>JassiMostru</dc:creator>
		<pubDate>Sat, 05 Jun 2010 04:20:07 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/?p=8#comment-167</guid>
		<description>Hi 
Very nice and intrestingss story.</description>
		<content:encoded><![CDATA[<p>Hi<br />
Very nice and intrestingss story.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big O-notation by Filip Ekberg</title>
		<link>http://blog.smartit.se/2008/08/18/big-o-notation/comment-page-1/#comment-85</link>
		<dc:creator>Filip Ekberg</dc:creator>
		<pubDate>Fri, 07 May 2010 05:47:34 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/?p=8#comment-85</guid>
		<description>Ah!

No Problem! :)</description>
		<content:encoded><![CDATA[<p>Ah!</p>
<p>No Problem! <img src='http://blog.smartit.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big O-notation by pawel</title>
		<link>http://blog.smartit.se/2008/08/18/big-o-notation/comment-page-1/#comment-84</link>
		<dc:creator>pawel</dc:creator>
		<pubDate>Fri, 07 May 2010 04:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/?p=8#comment-84</guid>
		<description>Ah...sure, I just thought mixed up slower with faster. If the number is bigger, then it requires more time, which means it&#039;s slower ;) Thanks.</description>
		<content:encoded><![CDATA[<p>Ah&#8230;sure, I just thought mixed up slower with faster. If the number is bigger, then it requires more time, which means it&#8217;s slower <img src='http://blog.smartit.se/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big O-notation by Filip Ekberg</title>
		<link>http://blog.smartit.se/2008/08/18/big-o-notation/comment-page-1/#comment-77</link>
		<dc:creator>Filip Ekberg</dc:creator>
		<pubDate>Thu, 06 May 2010 20:36:44 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/?p=8#comment-77</guid>
		<description>If we have 100 items log(n) with the logarithmic base of 10 would be: 2

In this case an algorithm with O(n*log(n)) would take 100 * log(100) which would be 200.

MergeSort is divided into two parts:

* Spliting the list by dividing it into two: Will only take log(n) to run
* Putting it back together: Means that we have to process each item

The sum of the above is step 1 * step 2 which is: log(n) * n.

Is it still unclear?</description>
		<content:encoded><![CDATA[<p>If we have 100 items log(n) with the logarithmic base of 10 would be: 2</p>
<p>In this case an algorithm with O(n*log(n)) would take 100 * log(100) which would be 200.</p>
<p>MergeSort is divided into two parts:</p>
<p>* Spliting the list by dividing it into two: Will only take log(n) to run<br />
* Putting it back together: Means that we have to process each item</p>
<p>The sum of the above is step 1 * step 2 which is: log(n) * n.</p>
<p>Is it still unclear?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Big O-notation by pawel</title>
		<link>http://blog.smartit.se/2008/08/18/big-o-notation/comment-page-1/#comment-74</link>
		<dc:creator>pawel</dc:creator>
		<pubDate>Thu, 06 May 2010 11:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/?p=8#comment-74</guid>
		<description>&quot;So, the split / sort part is basicly log(n) while the merging part is n and log (n) * n = nlog(n) which is slower than log(n).&quot;

I don&#039;t understand why  nlog(n) is slower than log(n). I thought that for example for n=9
log(n) = 3
nlog(n) = 3*3 = 9

cheers, Pawel</description>
		<content:encoded><![CDATA[<p>&#8220;So, the split / sort part is basicly log(n) while the merging part is n and log (n) * n = nlog(n) which is slower than log(n).&#8221;</p>
<p>I don&#8217;t understand why  nlog(n) is slower than log(n). I thought that for example for n=9<br />
log(n) = 3<br />
nlog(n) = 3*3 = 9</p>
<p>cheers, Pawel</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pointers &amp; Double Pointers by Filip Ekberg</title>
		<link>http://blog.smartit.se/2008/11/11/pointers-double-pointers/comment-page-1/#comment-5</link>
		<dc:creator>Filip Ekberg</dc:creator>
		<pubDate>Fri, 19 Feb 2010 22:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/?p=4#comment-5</guid>
		<description>It&#039;s from WordPress-Themes, a theme aimed for developers.</description>
		<content:encoded><![CDATA[<p>It&#8217;s from WordPress-Themes, a theme aimed for developers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Communication issues when adapting outsourcing by inbound call centers</title>
		<link>http://blog.smartit.se/2008/12/14/communication-issues-when-adapting-outsourcing/comment-page-1/#comment-9</link>
		<dc:creator>inbound call centers</dc:creator>
		<pubDate>Mon, 25 Jan 2010 06:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/2008/12/14/communication-issues-when-adapting-outsourcing/#comment-9</guid>
		<description>This is a very informative post about outsourcing. Thanks for sharing them. It is very helpful.</description>
		<content:encoded><![CDATA[<p>This is a very informative post about outsourcing. Thanks for sharing them. It is very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pointers &amp; Double Pointers by Lormfrortuark</title>
		<link>http://blog.smartit.se/2008/11/11/pointers-double-pointers/comment-page-1/#comment-4</link>
		<dc:creator>Lormfrortuark</dc:creator>
		<pubDate>Sat, 02 Jan 2010 00:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/?p=4#comment-4</guid>
		<description>Sry for writing Off-Topic but which Word Press theme are you using? It looks amazing!</description>
		<content:encoded><![CDATA[<p>Sry for writing Off-Topic but which Word Press theme are you using? It looks amazing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Communication issues when adapting outsourcing by Outsourcing Software Development</title>
		<link>http://blog.smartit.se/2008/12/14/communication-issues-when-adapting-outsourcing/comment-page-1/#comment-8</link>
		<dc:creator>Outsourcing Software Development</dc:creator>
		<pubDate>Thu, 29 Jan 2009 07:59:20 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/2008/12/14/communication-issues-when-adapting-outsourcing/#comment-8</guid>
		<description>Very good and informative article on outsourcing. I agree to the points you have included in it for outsourcing. The communication really matters in outsourcing.</description>
		<content:encoded><![CDATA[<p>Very good and informative article on outsourcing. I agree to the points you have included in it for outsourcing. The communication really matters in outsourcing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Polymorphism – A Practical Example by Filip Ekberg</title>
		<link>http://blog.smartit.se/2008/11/13/polymorphism-a-practical-example/comment-page-1/#comment-7</link>
		<dc:creator>Filip Ekberg</dc:creator>
		<pubDate>Wed, 03 Dec 2008 17:13:05 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/2008/11/13/polymorphism-a-practical-example/#comment-7</guid>
		<description>That is an interesting approach, however this example was for a begining class in C++ where the students didn&#039;t have the fully understanding of polymorphism and the parts with copy ctor  wasn&#039;t talked about yet in that course.

But I understand your point and I&#039;ll keep in mind to just &quot;add them&quot; so that the students can understand from these and use these examples later on.

Thanks</description>
		<content:encoded><![CDATA[<p>That is an interesting approach, however this example was for a begining class in C++ where the students didn&#8217;t have the fully understanding of polymorphism and the parts with copy ctor  wasn&#8217;t talked about yet in that course.</p>
<p>But I understand your point and I&#8217;ll keep in mind to just &#8220;add them&#8221; so that the students can understand from these and use these examples later on.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Polymorphism – A Practical Example by orip</title>
		<link>http://blog.smartit.se/2008/11/13/polymorphism-a-practical-example/comment-page-1/#comment-6</link>
		<dc:creator>orip</dc:creator>
		<pubDate>Wed, 03 Dec 2008 17:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/2008/11/13/polymorphism-a-practical-example/#comment-6</guid>
		<description>You&#039;re not taking the law of the big three into account - either define the copy ctor and assignment operator, declare them private, or put a comment that they&#039;re missing for brevity.

People later use these examples they learn from when writing real programs.</description>
		<content:encoded><![CDATA[<p>You&#8217;re not taking the law of the big three into account &#8211; either define the copy ctor and assignment operator, declare them private, or put a comment that they&#8217;re missing for brevity.</p>
<p>People later use these examples they learn from when writing real programs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pointers &amp; Double Pointers by Polymorphism &#8211; A Practical Example &#171; Filip Ekberg&#8217;s Blog</title>
		<link>http://blog.smartit.se/2008/11/11/pointers-double-pointers/comment-page-1/#comment-3</link>
		<dc:creator>Polymorphism &#8211; A Practical Example &#171; Filip Ekberg&#8217;s Blog</dc:creator>
		<pubDate>Thu, 13 Nov 2008 19:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://fekberg.wordpress.com/?p=4#comment-3</guid>
		<description>[...] Filip Ekberg&#8217;s Blog Yet another programmers blog      &#171; Pointers &amp; Double&#160;Pointers [...]</description>
		<content:encoded><![CDATA[<p>[...] Filip Ekberg&#8217;s Blog Yet another programmers blog      &laquo; Pointers &amp; Double&nbsp;Pointers [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
