首页 > 编程语言 > 详细

203. Remove Linked List Elements java solutions

时间:2016-06-24 12:21:54      阅读:195      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!