<?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>No solo Codigo &#187; Programacion</title>
	<atom:link href="http://blog.open-codes.com/category/computacion/programacion/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.open-codes.com</link>
	<description>Blog dedicado a algoritmos, computacion gráfica y otras cosas.</description>
	<lastBuildDate>Tue, 15 Jun 2010 21:22:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Algoritmo para Shortest Path First Bellman-Ford implementacion en c</title>
		<link>http://blog.open-codes.com/2010/06/algoritmo-para-shortest-path-first-bellman-ford-implementacion-en-c/</link>
		<comments>http://blog.open-codes.com/2010/06/algoritmo-para-shortest-path-first-bellman-ford-implementacion-en-c/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 18:08:57 +0000</pubDate>
		<dc:creator>Daniel Gomez Rico</dc:creator>
				<category><![CDATA[Algoritmos]]></category>
		<category><![CDATA[Grafos]]></category>
		<category><![CDATA[Lenguaje c]]></category>
		<category><![CDATA[Programacion]]></category>
		<category><![CDATA[Algoritmos implementados Grafos]]></category>

		<guid isPermaLink="false">http://blog.open-codes.com/?p=171</guid>
		<description><![CDATA[


Busca el camino mas corto en un grafo ponderado dirigido (puede tener pesos negativos pero que no formen ciclos infinitos)
.
Input: (primera linea contiene numero de nodos, numero de relaciones, nodoinicio, nododestino, y luego las relaciones (origen destino y peso)

6 9 0 4
0 1 1
0 2 5
1 3 1
1 2 20
2 4 999
3 4 20
3 0 [...]]]></description>
		<wfw:commentRss>http://blog.open-codes.com/2010/06/algoritmo-para-shortest-path-first-bellman-ford-implementacion-en-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Teoria conversion entre diferentes sistemas numericos</title>
		<link>http://blog.open-codes.com/2009/12/teoria-conversion-entre-diferentes-sistemas-numericos/</link>
		<comments>http://blog.open-codes.com/2009/12/teoria-conversion-entre-diferentes-sistemas-numericos/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 15:41:07 +0000</pubDate>
		<dc:creator>Daniel Gomez Rico</dc:creator>
				<category><![CDATA[Programacion]]></category>
		<category><![CDATA[Teoria]]></category>
		<category><![CDATA[computacion]]></category>

		<guid isPermaLink="false">http://blog.open-codes.com/?p=118</guid>
		<description><![CDATA[


Convertir de otros sistemas al decimal (base 10)
Ej:
El sistema binario es base 2, por lo que la formula para obtener el decimal que represente el binario 101 base 2 es:
1*2
Converting from other number bases to decimal
Other number systems use different bases. The binary number system uses base 2, so the place values of the digits [...]]]></description>
		<wfw:commentRss>http://blog.open-codes.com/2009/12/teoria-conversion-entre-diferentes-sistemas-numericos/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
