rornoanparn

Untitled

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