- template<class T>
- void ArvBin<T>::Decrescente() const
- {
- cout << "\nLista Loja inserida na arvore por ordem decrescente\n" ;
- Decrescente(this->raiz);
- }
- template <class T>
- void ArvBin<T>::Decrescente(Nodo<T>* rz) const
- {
- if (rz!=NULL)
- {
- Decrescente(rz->dir);
- cout << rz->inf << " " ;
- Decrescente(rz->esq);
- }
- return;
- }