Advertisement
rornoanparn

Untitled

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