加载中...

摘要: 18. 删除链表的节点 思路 class Solution { public ListNode deleteNode(ListNode head, int val) { if(head == null) return null; if(head.val == val) return head.nex 阅读全文
posted @ 2023-01-03 00:38 Vincy9501 阅读(14) 评论(0) 推荐(0) 编辑