码迷,mamicode.com
首页 > 编程语言 > 详细

203. Remove Linked List Elements java solutions

时间:2016-06-24 12:24:20      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

Remove all elements from a linked list of integers that have value val.

Example
Given: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6
Return: 1 --> 2 --> 3 --> 4 --> 5

Credits:
Special thanks to @mithmatt for adding this problem and creating all test cases.

 

Subscribe to see which companies asked this question

 1 /**
 2  * Definition for singly-linked list.
 3  * public class ListNode {
 4  *     int val;
 5  *     ListNode next;
 6  *     ListNode(int x) { val = x; }
 7  * }
 8  */
 9 public class Solution {
10     public ListNode removeElements(ListNode head, int val) {
11         if(head == null) return head;
12         ListNode ans = new ListNode(-1);
13         ListNode tmp = new ListNode(-1);
14         ans.next = tmp;
15         ListNode cur = head;
16         while(cur != null){
17             if(cur.val != val) {
18                 tmp.next = cur;
19                 tmp = tmp.next;
20             }
21             cur = cur.next;
22         }
23         tmp.next = null;
24         return ans.next.next;
25     }
26 }

 

203. Remove Linked List Elements java solutions

标签:

原文地址:http://www.cnblogs.com/guoguolan/p/5613673.html

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