Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.24 KB | None | 0 0
  1. if lista<>nil then
  2.     if lista^.dni=dni then
  3.         InsertarenArbol(lista^.materia,codmat,nota)
  4.     else
  5.         InsertarenLista(lista^.sig,dni,codmat,nota);
  6. else
  7. begin  
  8.     lista:=nuevonodolista(dni);
  9.     InsertarenArbol(lista^.materia,codmat,nota);
  10. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement