首页 > 其他 > 详细

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

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