Advertisement
rornoanparn

Untitled

Feb 26th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.09 KB | None | 0 0
  1. void insertFirst(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