Advertisement
rornoanparn

Untitled

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