Advertisement
Guest User

Untitled

a guest
May 4th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. InserirN* inserir (InserirN* lista, int valor, int pos){
  2. if (lista == NULL) {
  3. lista = new InserirFinal;
  4. lista->valor = valor;
  5. lista->proximo = NULL;
  6. return lista;
  7. }
  8. else{
  9. int cont = 0;
  10. while (cont < pos){
  11. cont = cont++;
  12. ptr = ptr->proximo;
  13. }
  14. }
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement