首页 > 其他 > 详细

203. 移除链表元素

时间:2021-06-16 16:32:23      阅读:22      评论:0      收藏:0      [点我收藏+]
 1 /**
 2  * Definition for singly-linked list.
 3  * struct ListNode {
 4  *     int val;
 5  *     struct ListNode *next;
 6  * };
 7  */
 8 
 9 
10 struct ListNode* removeElements(struct ListNode* head, int val){
11 
12     struct ListNode *p = (struct ListNode *)malloc(sizeof(struct ListNode)),*q=head,*tail;
13     p->next = NULL;
14     tail = p;
15     while(q)
16     {
17         if(q->val==val)
18         {
19 
20         }else{
21             struct ListNode *s = (struct ListNode *)malloc(sizeof(struct ListNode));
22             s->val = q->val;
23             s->next = NULL;
24             tail->next = s;
25             tail = s;
26         }
27 
28         q = q->next;
29     }
30 
31     return p->next;
32 }

 

203. 移除链表元素

原文:https://www.cnblogs.com/Knightl8/p/14889674.html

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