Advertisement
rornoanparn

Untitled

Feb 26th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. void insertLast(List &L, address P) {
  2. next(last(L)) = P;
  3. next(P) = first(L);
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement