题目描述:
给定单向链表的头指针和一个要删除的节点的值,定义一个函数删除该节点。
返回删除后的链表的头节点。
示例:
思路:
先定义ListNode复制head。然后对head进行遍历,如果val等于题目中的val,直接跳过。
代码:
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode deleteNode(ListNode head, int val) {
ListNode node;
if(head != null){
node = head;
}else{
return null;
}
if(head.val == val){
return head.next;
}
while(head.next != null){
if(head.next.val == val){
head.next = head.next.next;
}else{
head = head.next;
}
}
return node;
}
}
结果:
© 版权声明
THE END
请登录后查看评论内容