rornoanparn

Untitled

Feb 26th, 2020
119
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.     first(L) = (next(first(L)))
  3.     next(last(L))=first(L);
  4.     next(P)=NULL;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment