leetcode-8-pointer

void deleteNode(ListNode* node) {
        *node = *node->next;
    }

 

posted @ 2017-03-07 13:18  陆离可  阅读(78)  评论(0编辑  收藏  举报