| Questão | Responda |
| Delete all occurrences of a key in a linked list | public void deleteKey(ListNode head, int key){ ListNode temp = head; ListNode = prev; while(temp != null && temp.data ==key){ head = temp.next; temp= head; } while(temp!=null){ while(temp!=null && temp.data!=key){ prev = temp; temp= temp.next; } if(temp == null) return; prev.next = temp.next; temp = prev.next; } } |
Quer criar seus próprios Flashcards gratuitos com GoConqr? Saiba mais.