rornoanparn

Untitled

Feb 26th, 2020
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. void insertLast(List &L, address P){
  2.     address Q;
  3.     Q = first(L)
  4.     while(next(Q)!=NULL){
  5.         Q = next(Q);
  6.     }
  7.     next(Q) = P;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment