Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int remove(No** l, int v){
- while(l->prox->v != v && l->prox != NULL){
- l->prox = l->prox->prox;
- }
- if(l->prox == v){
- l->prox = l->prox->prox
- }
- else{
- return 0;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement