首页 > 其他 > 详细

LeetCode 203. 移除链表元素

时间:2019-08-16 23:23:30      阅读:91      评论:0      收藏:0      [点我收藏+]

题目链接:https://leetcode-cn.com/problems/remove-linked-list-elements/

删除链表中等于给定值 val 的所有节点。

示例:

输入: 1->2->6->3->4->5->6, val = 6
输出: 1->2->3->4->5
 1 /**
 2  * Definition for singly-linked list.
 3  * struct ListNode {
 4  *     int val;
 5  *     struct ListNode *next;
 6  * };
 7  */
 8 struct ListNode* removeElements(struct ListNode* head, int val){
 9     while(head!=NULL&&head->val==val){
10         head=head->next;
11     }
12     if(head==NULL) return NULL;
13     struct ListNode *p=head;
14     while(p->next!=NULL){
15         if(p->next->val==val) p->next=p->next->next;
16         else p=p->next;
17     }
18     return head;
19 }

 

LeetCode 203. 移除链表元素

原文:https://www.cnblogs.com/shixinzei/p/11366385.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!