<?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 on: Computer Algorithms: Dijkstra Shortest Path in a Graph</title>
	<atom:link href="/2012/10/15/computer-algorithms-dijkstra-shortest-path-in-a-graph/feed/" rel="self" type="application/rss+xml" />
	<link>/2012/10/15/computer-algorithms-dijkstra-shortest-path-in-a-graph/</link>
	<description>on web development</description>
	<lastBuildDate>Fri, 26 Oct 2018 21:40:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>By: Matt Skelton</title>
		<link>/2012/10/15/computer-algorithms-dijkstra-shortest-path-in-a-graph/comment-page-1/#comment-478036</link>
		<dc:creator><![CDATA[Matt Skelton]]></dc:creator>
		<pubDate>Tue, 09 Jan 2018 15:22:37 +0000</pubDate>
		<guid isPermaLink="false">/?p=3381#comment-478036</guid>
		<description><![CDATA[I&#039;m in agreement with Gab but I&#039;m pretty sure I misunderstood something too. The shortest path is [0, 2, 3, 4, 5]. What am I missing?]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m in agreement with Gab but I&#8217;m pretty sure I misunderstood something too. The shortest path is [0, 2, 3, 4, 5]. What am I missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gab</title>
		<link>/2012/10/15/computer-algorithms-dijkstra-shortest-path-in-a-graph/comment-page-1/#comment-355168</link>
		<dc:creator><![CDATA[Gab]]></dc:creator>
		<pubDate>Wed, 02 Sep 2015 09:39:55 +0000</pubDate>
		<guid isPermaLink="false">/?p=3381#comment-355168</guid>
		<description><![CDATA[I think the code implementation is wrong.

It says [0, 1, 2, 4, 5] is the shortests path. If we sum all distances between these vertices:
3+7+12+3 = 25
If we follow the second path [0,3,2,4,5] and sum all distances between these vertices:
1+8+12+3 = 24

I might have misunderstood something. Could anyone enlighten me please if I&#039;m wrong?

Thanks,

Gab]]></description>
		<content:encoded><![CDATA[<p>I think the code implementation is wrong.</p>
<p>It says [0, 1, 2, 4, 5] is the shortests path. If we sum all distances between these vertices:<br />
3+7+12+3 = 25<br />
If we follow the second path [0,3,2,4,5] and sum all distances between these vertices:<br />
1+8+12+3 = 24</p>
<p>I might have misunderstood something. Could anyone enlighten me please if I&#8217;m wrong?</p>
<p>Thanks,</p>
<p>Gab</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florian</title>
		<link>/2012/10/15/computer-algorithms-dijkstra-shortest-path-in-a-graph/comment-page-1/#comment-156515</link>
		<dc:creator><![CDATA[Florian]]></dc:creator>
		<pubDate>Mon, 03 Nov 2014 15:39:42 +0000</pubDate>
		<guid isPermaLink="false">/?p=3381#comment-156515</guid>
		<description><![CDATA[Hi,

Thanks a lot for this tutorial and your very clear explanations. 

At the end of your code, your give arguments $v0 and $adjacencyList to the function calcShortestPaths(). I was wondering how to display the shortest path that the function calcShortestPaths() computes (beginner in PHP)?

Thanks a lot for your kind help,

Florian]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks a lot for this tutorial and your very clear explanations. </p>
<p>At the end of your code, your give arguments $v0 and $adjacencyList to the function calcShortestPaths(). I was wondering how to display the shortest path that the function calcShortestPaths() computes (beginner in PHP)?</p>
<p>Thanks a lot for your kind help,</p>
<p>Florian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>/2012/10/15/computer-algorithms-dijkstra-shortest-path-in-a-graph/comment-page-1/#comment-47630</link>
		<dc:creator><![CDATA[Mike]]></dc:creator>
		<pubDate>Sun, 06 Jul 2014 03:32:09 +0000</pubDate>
		<guid isPermaLink="false">/?p=3381#comment-47630</guid>
		<description><![CDATA[Pretty cool, but I have some concerns about the code:

- The vertex parent field doesn&#039;t seem to get used here.
- Are you supposed to update the path every time you visit a neighboring node, or just when you adjust it&#039;s distance ?
- Does recoverFromCorruption() delete duplicates and trigger a re-sort ?  Seems like it would have to.

Thanks.]]></description>
		<content:encoded><![CDATA[<p>Pretty cool, but I have some concerns about the code:</p>
<p>&#8211; The vertex parent field doesn&#8217;t seem to get used here.<br />
&#8211; Are you supposed to update the path every time you visit a neighboring node, or just when you adjust it&#8217;s distance ?<br />
&#8211; Does recoverFromCorruption() delete duplicates and trigger a re-sort ?  Seems like it would have to.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: payal</title>
		<link>/2012/10/15/computer-algorithms-dijkstra-shortest-path-in-a-graph/comment-page-1/#comment-18664</link>
		<dc:creator><![CDATA[payal]]></dc:creator>
		<pubDate>Mon, 06 May 2013 03:37:18 +0000</pubDate>
		<guid isPermaLink="false">/?p=3381#comment-18664</guid>
		<description><![CDATA[(y)]]></description>
		<content:encoded><![CDATA[<p>(y)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
