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

Jan 09 - Remove Linked List Elements; Linked List; Pointer operation;

时间:2016-01-10 10:23:43      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

数据结构:单向链表。指针操作,注意Null Pointer的情况 以及链表头指针的操作

 

代码:

/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
public class Solution {
public ListNode removeElements(ListNode head, int val) {
ListNode cur = head;
while(head != null && head.val == val){
head = head.next;
cur = cur.next;
}

while(cur != null && cur.next != null){
if(cur.next.val == val) cur.next = cur.next.next;
else cur = cur.next;
}
return head;
}
}

Jan 09 - Remove Linked List Elements; Linked List; Pointer operation;

标签:

原文地址:http://www.cnblogs.com/5683yue/p/5117812.html

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