<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.hlt.inesc-id.pt/~david/wiki/pt/index.php?action=history&amp;feed=atom&amp;title=Procura_numa_BST</id>
	<title>Procura numa BST - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.hlt.inesc-id.pt/~david/wiki/pt/index.php?action=history&amp;feed=atom&amp;title=Procura_numa_BST"/>
	<link rel="alternate" type="text/html" href="https://www.hlt.inesc-id.pt/~david/wiki/pt/index.php?title=Procura_numa_BST&amp;action=history"/>
	<updated>2026-05-04T13:33:01Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.5</generator>
	<entry>
		<id>https://www.hlt.inesc-id.pt/~david/wiki/pt/index.php?title=Procura_numa_BST&amp;diff=1620&amp;oldid=prev</id>
		<title>Root at 08:08, 19 May 2005</title>
		<link rel="alternate" type="text/html" href="https://www.hlt.inesc-id.pt/~david/wiki/pt/index.php?title=Procura_numa_BST&amp;diff=1620&amp;oldid=prev"/>
		<updated>2005-05-19T08:08:00Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Pesquisa de um elemento, dada a sua chave.&lt;br /&gt;
&lt;br /&gt;
  Item searchR(link h, Key v) {&lt;br /&gt;
    Key t = key(h-&amp;gt;item);&lt;br /&gt;
    if (h == z) return NULLitem;&lt;br /&gt;
    if eq(v, t) return h-&amp;gt;item;&lt;br /&gt;
    if less(v, t) return searchR(h-&amp;gt;l, v);&lt;br /&gt;
    else          return searchR(h-&amp;gt;r, v);&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
Implementação da função &amp;lt;code&amp;gt;STsearch&amp;lt;/code&amp;gt; do ADT tabela de sÃ­mbolos.&lt;br /&gt;
&lt;br /&gt;
  Item STsearch(Key v) {&lt;br /&gt;
    return searchR(head, v);&lt;br /&gt;
  }&lt;/div&gt;</summary>
		<author><name>Root</name></author>
	</entry>
</feed>