<?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>Matheus Bratfisch &#187; resolvidos</title>
	<atom:link href="http://www.matbra.com/tag/resolvidos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matbra.com</link>
	<description>&#34;Cogito ergo sum&#34;</description>
	<lastBuildDate>Tue, 20 Dec 2011 00:03:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Stack, using pointer, Data Structure.</title>
		<link>http://www.matbra.com/en/2009/04/28/pilha-com-ponteiros-estrutura-de-dados/</link>
		<comments>http://www.matbra.com/en/2009/04/28/pilha-com-ponteiros-estrutura-de-dados/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 02:49:40 +0000</pubDate>
		<dc:creator>Matheus (X-warrior) Bratfisch</dc:creator>
				<category><![CDATA[Aprendendo]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Estrutura de Dados]]></category>
		<category><![CDATA[exercicios]]></category>
		<category><![CDATA[pilha]]></category>
		<category><![CDATA[Ponteiro]]></category>
		<category><![CDATA[resolvidos]]></category>
		<category><![CDATA[Vetor]]></category>

		<guid isPermaLink="false">http://www.matbra.com/?p=128</guid>
		<description><![CDATA[This is a implementation of a Stack using pointers. The basic thing is the structure of tPilha is constant MAXPILHA = 100; tipo tPilha &#123; inteiro dados&#91;MAXPILHA&#93;; inteiro *topo; &#125;; Where *topo is a pointer to the first element in the stack. When you`re going to add a new one you verify if the stack [...]]]></description>
			<content:encoded><![CDATA[<p>This is a implementation of a Stack using pointers. The basic thing is the structure of tPilha is </p>
<div class="codesnip-container" >
<div class="c codesnip" style="font-family:monospace;">constant MAXPILHA <span class="sy0">=</span> <span class="nu0">100</span><span class="sy0">;</span><br />
tipo tPilha <span class="br0">&#123;</span><br />
inteiro dados<span class="br0">&#91;</span>MAXPILHA<span class="br0">&#93;</span><span class="sy0">;</span><br />
inteiro <span class="sy0">*</span>topo<span class="sy0">;</span><br />
<span class="br0">&#125;</span><span class="sy0">;</span></div>
</div>
<p>Where *topo is a pointer to the first element in the stack. When you`re going to add a new one you verify if the stack is full, if it ins`t you put the data in a position in the stack and change the *topo. When removing, you decrement one in pointer *topo. Then it will reference the element that was there before. </p>
<p>(I had an enunciation but it was too big to translate)</p>
<p><a href="http://www.matbra.com/?attachment_id=130">stack with pointers implementation</a>! </p>
<p>Regards,<br />
Matheus</p>
<p>PS: You can see the enunciation in portuguese and then use <a href="http://translate.google.com" target="_blank">google translate</a> to translate it</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matbra.com/en/2009/04/28/pilha-com-ponteiros-estrutura-de-dados/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Structure, C</title>
		<link>http://www.matbra.com/en/2009/03/21/estrutura-de-dados-c/</link>
		<comments>http://www.matbra.com/en/2009/03/21/estrutura-de-dados-c/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 16:35:18 +0000</pubDate>
		<dc:creator>Matheus (X-warrior) Bratfisch</dc:creator>
				<category><![CDATA[Aprendendo]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Estrutura de Dados]]></category>
		<category><![CDATA[exercicios]]></category>
		<category><![CDATA[lista]]></category>
		<category><![CDATA[resolvidos]]></category>

		<guid isPermaLink="false">http://www.matbra.com/?p=30</guid>
		<description><![CDATA[Hello, This semester I have data structure class, my professor Aldo Von Wangenheim, decided to use C in the first part of the class, and in the end C++. If you don&#8217;t know it, he recommended this C course. He asked us to solve some exercices. Me and my colleague solved it and I&#8217;m uploading [...]]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>This semester I have data structure class, my professor Aldo Von Wangenheim, decided to use C in the first part of the class, and in the end C++. If you don&#8217;t know it, he recommended this <a href="http://mtm.ufsc.br/~azeredo/cursoC/aulas-main.html">C course</a>. He asked us to solve some exercices. Me and my colleague solved it and I&#8217;m uploading it here. </p>
<p><a href="http://www.matbra.com/?attachment_id=32">5 exercices for begginers (Portuguese)</a><br />
<a href="http://www.matbra.com/?attachment_id=33">Implementation of exercices</a></p>
<p>Regards,<br />
Matheus</p>
<p>PS: I start translating &#8220;all&#8221; old posts. Maybe this old ones, don&#8217;t have all stuffs translated (like attachments in this one)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matbra.com/en/2009/03/21/estrutura-de-dados-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

