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

自闭症网瘾萝莉.ら 提交于 2020-03-22 22:15:24

数据结构:单向链表。指针操作,注意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;
}
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!