12.07.2015 Views

assembly - Projeto Pesquisa - Furb

assembly - Projeto Pesquisa - Furb

assembly - Projeto Pesquisa - Furb

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Exemplo de TADclass pilha {private: //** Estes membros são visíveis somente a outros membros//** e amigosint *ptr_pilha;int tam_max;int top_ptr;public: //** Estes membros são visíveis aos clientespilha() { //** Um construtorptr_pilha = new int [ 100 ];tam_max = 99;top_ptr = -1;}~pilha() {delete [] ptr_pilha;}; //** Um destrutorvoid push(int numero) {if (top_ptr == tam_max)cout

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!