码迷,mamicode.com
首页 > 其他好文 > 详细

Remove Linked List Element

时间:2015-08-01 11:19:38      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

 

 1 public static ListNode removeElement(ListNode head, int val) {
 2         if (head == null) return null;
 3         
 4         ListNode dummy = new ListNode(0);
 5         dummy.next = head;
 6         ListNode p = dummy;
 7         
 8         while (p.next != null) {
 9             if (p.next.val == val) {
10                 ListNode next = p.next;
11                 p.next = next.next;
12             } else {
13                 p = p.next;
14             }
15         }
16         return dummy.next;
17     }

 

Remove Linked List Element

标签:

原文地址:http://www.cnblogs.com/chengeblair/p/4693746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!