<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Últimas mensagens do tópico "PILHAS em C++"]]></title>
		<link>http://www.guj.com.br/posts/list/2.java</link>
		<description><![CDATA[Últimas mensagens enviadas no tópico "PILHAS em C++"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>PILHAS em C++</title>
				<description><![CDATA[ Ow povo, tamu precisanu di algum exercicio que envolva PILHA e de preferencia que seja resolvido, se alguem tiver por favor, mandem pra genti ver se ajuda num trabalho que estamos montando aqui na Universidade...<br /> <br /> valew<br /> abraçu pra td mundu ae<br /> <br /> fuiz]]></description>
				<guid isPermaLink="true">http://www.guj.com.br/prepost/60864/319570/pilhas-em-c
</guid>
				<link>http://www.guj.com.br/prepost/60864/319570/pilhas-em-c
</link>
				<pubDate><![CDATA[Mon, 28 May 2007 23:26:16]]> GMT</pubDate>
				<author><![CDATA[ USP]]></author>
			</item>
			<item>
				<title>PILHAS em C++</title>
				<description><![CDATA[ [quote=USP]Ow povo, tamu precisanu di algum exercicio que envolva PILHA e de preferencia que seja resolvido, se alguem tiver por favor, mandem pra genti ver se ajuda num trabalho que estamos montando aqui na Universidade...<br /> <br /> valew<br /> abraçu pra td mundu ae<br /> <br /> fuiz[/quote]<br /> <br /> Ei, conselho.:<br /> <br /> Vai em algum fórum de C++ e repita essa mensagem, em português!<br /> <br /> Se quiser algum lugar que já tenha mastigado: <a class="snap_shots" href="http://www.vivaolinux.com.br/" target="_blank" rel="nofollow">http://www.vivaolinux.com.br/</a> , na seção de Scripts tem, é só procurar.]]></description>
				<guid isPermaLink="true">http://www.guj.com.br/prepost/60864/319595/pilhas-em-c
</guid>
				<link>http://www.guj.com.br/prepost/60864/319595/pilhas-em-c
</link>
				<pubDate><![CDATA[Tue, 29 May 2007 00:22:13]]> GMT</pubDate>
				<author><![CDATA[ Kknd]]></author>
			</item>
			<item>
				<title>Re:PILHAS em C++</title>
				<description><![CDATA[ Enquete: Qual dos erros abaixos tornam o pedido merecedor de uma bela macumba ou algo do gênero:<br /> <br /> a) Pedir trabalho de faculdade no GUJ<br /> <br /> b) Pedir trabalho em C++, num forum sobre Java<br /> <br /> c) Falar em Miguxês<br /> <br /> Fala sério... rsrrs Moderador, pelo amor de Deus, BLOQUEIA!!!]]></description>
				<guid isPermaLink="true">http://www.guj.com.br/prepost/60864/319684/repilhas-em-c
</guid>
				<link>http://www.guj.com.br/prepost/60864/319684/repilhas-em-c
</link>
				<pubDate><![CDATA[Tue, 29 May 2007 12:01:49]]> GMT</pubDate>
				<author><![CDATA[ josenaldo]]></author>
			</item>
			<item>
				<title>Re:PILHAS em C++</title>
				<description><![CDATA[ <a class="snap_shots" href="http://www.google.com.br" target="_blank" rel="nofollow">www.google.com.br</a><br /> <br /> Conhece mixugo?]]></description>
				<guid isPermaLink="true">http://www.guj.com.br/prepost/60864/319686/repilhas-em-c
</guid>
				<link>http://www.guj.com.br/prepost/60864/319686/repilhas-em-c
</link>
				<pubDate><![CDATA[Tue, 29 May 2007 12:03:54]]> GMT</pubDate>
				<author><![CDATA[ Gabriel]]></author>
			</item>
			<item>
				<title>Re:PILHAS em C++</title>
				<description><![CDATA[ Todas Alternativas ACIMA kkkkkkkkkkkkkkkkkkkkkkk<br /> kkkkkkkkkkkkkkk<br /> miguxes foi foda kkkkkk]]></description>
				<guid isPermaLink="true">http://www.guj.com.br/prepost/60864/319704/repilhas-em-c
</guid>
				<link>http://www.guj.com.br/prepost/60864/319704/repilhas-em-c
</link>
				<pubDate><![CDATA[Tue, 29 May 2007 12:22:37]]> GMT</pubDate>
				<author><![CDATA[ lucas_sa]]></author>
			</item>
			<item>
				<title>Re:PILHAS em C++</title>
				<description><![CDATA[ [url]http://www.submarino.com.br/books_productdetails.asp?Query=ProductPage&ProdTypeId=1&ProdId=180970&ST=SF16679[/url]]]></description>
				<guid isPermaLink="true">http://www.guj.com.br/prepost/60864/319705/repilhas-em-c
</guid>
				<link>http://www.guj.com.br/prepost/60864/319705/repilhas-em-c
</link>
				<pubDate><![CDATA[Tue, 29 May 2007 12:23:44]]> GMT</pubDate>
				<author><![CDATA[ cassio]]></author>
			</item>
			<item>
				<title>Re:PILHAS em C++</title>
				<description><![CDATA[ Se procurar em msdn.microsoft.com vai achar um monte de exemplos resolvidos. Dê uma olhada rapidinho, que vou bloquear este tópico. <br /> Nem me pergunte se você entendeu alguma coisa. <br /> <br /> [code]<br /> // StackTopEmpty.cpp<br /> // compile with: /EHsc<br /> // Illustrates how to use the top function to<br /> // retrieve the last element of the controlled<br /> // sequence. It also illustrates how to use the<br /> // empty function to loop though the stack.<br /> // <br /> // Functions:<br /> //<br /> //    top   :  returns the top element of the stack.<br /> //    empty :  returns true if the stack has 0 elements.<br /> //////////////////////////////////////////////////////////////////////<br /> <br /> #pragma warning(disable:4786)<br /> #include &lt;stack&gt;<br /> #include &lt;iostream&gt;<br /> <br /> using namespace std ;<br /> <br /> typedef stack&lt;int&gt; STACK_INT;<br /> <br /> int main()<br /> {<br />    STACK_INT stack1;<br /> <br />    cout &lt&lt &quot;stack1.empty() returned &quot; &lt&lt<br />       (stack1.empty()? &quot;true&quot;: &quot;false&quot;) &lt&lt endl;  // Function 3<br /> <br />    cout &lt&lt &quot;stack1.push(2)&quot; &lt&lt endl;<br />    stack1.push(2);<br /> <br />    if (!stack1.empty())                           // Function 3<br />       cout &lt&lt &quot;stack1.top() returned &quot; &lt&lt<br />       stack1.top() &lt&lt endl;                       // Function 1<br /> <br />    cout &lt&lt &quot;stack1.push(5)&quot; &lt&lt endl;<br />    stack1.push(5);<br /> <br />    if (!stack1.empty())                           // Function 3<br />       cout &lt&lt &quot;stack1.top() returned &quot; &lt&lt<br />       stack1.top() &lt&lt endl;                       // Function 1<br /> <br />    cout &lt&lt &quot;stack1.push(11)&quot; &lt&lt endl;<br />    stack1.push(11);<br /> <br />    if (!stack1.empty())                           // Function 3<br />       cout &lt&lt &quot;stack1.top() returned &quot; &lt&lt<br />       stack1.top() &lt&lt endl;                       // Function 1<br /> <br />    // Modify the top item. Set it to 6.<br />    if (!stack1.empty()) {                         // Function 3<br />       cout &lt&lt &quot;stack1.top()=6;&quot; &lt&lt endl;<br />       stack1.top()=6;                             // Function 1<br />    }<br /> <br />    // Repeat until stack is empty<br />    while (!stack1.empty()) {                      // Function 3<br />       const int& t=stack1.top();                  // Function 2<br />       cout &lt&lt &quot;stack1.top() returned &quot; &lt&lt t &lt&lt endl;<br />       cout &lt&lt &quot;stack1.pop()&quot; &lt&lt endl;<br />       stack1.pop();<br />    }<br /> }<br /> <br /> [/code]]]></description>
				<guid isPermaLink="true">http://www.guj.com.br/prepost/60864/319769/repilhas-em-c
</guid>
				<link>http://www.guj.com.br/prepost/60864/319769/repilhas-em-c
</link>
				<pubDate><![CDATA[Tue, 29 May 2007 13:24:40]]> GMT</pubDate>
				<author><![CDATA[ thingol]]></author>
			</item>
	</channel>
</rss>
