Leetcode: Delete Node in a Linked List

Sắp cuối tuần rồi, kiếm một bài trên Leetcode về chơi cho vui :smile:

Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.

Supposed the linked list is 1 -> 2 -> 3 -> 4 and you are given the third node with value 3, the linked list should become 1 -> 2 -> 4 after calling your function.

Luật chơi: Các bạn chỉ nên post code lên http://ideone.com/, ai muốn xem thì click vào xem. Không nên post trực tiếp lên mất hay ^^

Nhớ post kèm ngôn ngữ và thời gian thực thi nhé :smile:

4 Likes

C++ - 16ms :smile:


C thì 4ms

1 Like
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?