You are viewing a single comment's thread. Return to all comments →
Hello Everyone,
I tried this into PHP :
current = llist; count = 0; if(count == position){ current = current->next; return $current; }
while(count != position-1){ current = current->next; count++; } current->next = current->next->next; return $llist;
Seems like cookies are disabled on this browser, please enable them to open this website
Delete a Node
You are viewing a single comment's thread. Return to all comments →
Hello Everyone,
I tried this into PHP :
current = llist; count = 0; if(count == position){ current = current->next; return $current; }