给你一个链表的头节点 head
和一个整数 val
,请你删除链表中所有满足 Node.val == val
的节点,并返回 新的头节点 。
解题思路:通过设置虚拟头节点或者不设置的方式,都可以解决
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
//方式一:设置虚拟头节点,这种方式用起来比较简便
public ListNode removeElements(ListNode head, int val) {
//首先创建一个哑节点dummy,或者叫虚拟头节点
ListNode dummy=new ListNode(0);
dummy.next=head;
ListNode current=dummy;
while(current.next!=null){
if(current.next.val==val){
current.next=current.next.next;
}else{
current=current.next;
}
}
return dummy.next;
}
}
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
//方式二:不设置虚拟头节点
public ListNode removeElements(ListNode head, int val) {
while(head!=null && head.val==val){
head=head.next;
}
if(head==null){
return head;
}
//已经确定当前head.val!=val,所有当前的head.val都!=val
ListNode pre=head;
ListNode cur=head.next;
while(cur!=null){
if(cur.val==val){
pre.next=cur.next;
}else{
pre=cur;
}
cur=cur.next;
}
return head;
}
}
你可以选择使用单链表或者双链表,设计并实现自己的链表。
单链表中的节点应该具备两个属性:val
和 next
。val
是当前节点的值,next
是指向下一个节点的指针/引用。
如果是双向链表,则还需要属性 prev
以指示链表中的上一个节点。假设链表中的所有节点下标从 0 开始。
实现 MyLinkedList
类:
MyLinkedList()
初始化MyLinkedList
对象。int get(int index)
获取链表中下标为index
的节点的值。如果下标无效,则返回-1
。void addAtHead(int val)
将一个值为val
的节点插入到链表中第一个元素之前。在插入完成后,新节点会成为链表的第一个节点。void addAtTail(int val)
将一个值为val
的节点追加到链表中作为链表的最后一个元素。void addAtIndex(int index, int val)
将一个值为val
的节点插入到链表中下标为index
的节点之前。如果index
等于链表的长度,那么该节点会被追加到链表的末尾。如果index
比长度更大,该节点将 不会插入 到链表中。void deleteAtIndex(int index)
如果下标有效,则删除链表中下标为index
的节点。
解题思路:设置单链表还是双向链表,设置一个虚拟头节点后,index下标怎么计算,都是要考虑的问题
public class MyLinkedList {
//单链表形式
private Node head;
private int size;
public MyLinkedList() {
this.head = new Node(0); //设置一个虚拟头节点或者叫哑节点
this.size = 0;
}
public int get(int index) {
if (index < 0 || index >= size) {
return -1;
}
Node current = head;
for (int i = 0; i <= index; i++) {//设置虚拟头节点后,要取第index个节点的值,其下标是index+1(虚拟头节点也占一个节点位置)
current = current.next;
}
return current.val;
}
public void addAtHead(int val) {
addAtIndex(0,val);
}
public void addAtTail(int val) {
addAtIndex(size,val);
}
public void addAtIndex(int index, int val) {
if (index > size) {
return;
}
Node current=head;
for(int i=0;i<index;i++){//插入到第index个节点前的位置
current=current.next;
}
Node newNode=new Node(val);
newNode.next=current.next;
current.next=newNode;
size++;
}
public void deleteAtIndex(int index) {
if (index < 0 || index >= size) {
return;
}
Node current = head;
for (int i = 0; i < index; i++) {
current = current.next;
}
current.next = current.next.next;
size--;
}
private class Node {
int val;
Node next;
Node(int val) {
this.val = val;
}
}
}
public class MyLinkedList {
//双链表形式
private Node head;
private Node tail;
private int size;
public MyLinkedList() {
this.head = new Node(0);
this.tail=new Node(0);
this.size = 0;
head.next=tail;
tail.prev=head;
}
public int get(int index) {
if (index < 0 || index >= size) {
return -1;
}
Node current = this.head;
//判断哪一边遍历时间更短
if(index>=size/2){
current=this.tail;
for(int i=0;i<size-index;i++){
current=current.prev;
}
}else{
for (int i = 0; i <= index; i++) {
current = current.next;
}
}
return current.val;
}
public void addAtHead(int val) {
addAtIndex(0,val);
}
public void addAtTail(int val) {
addAtIndex(size,val);
}
public void addAtIndex(int index, int val) {
if (index > size) {
return;
}
Node current=head;
for(int i=0;i<index;i++){
current=current.next;
}
Node newNode=new Node(val);
newNode.next=current.next;
current.next.prev=newNode;
newNode.prev=current;
current.next=newNode;
size++;
}
public void deleteAtIndex(int index) {
if (index < 0 || index >= size) {
return;
}
Node current = head;
for (int i = 0; i < index; i++) {
current = current.next;
}
current.next.next.prev=current;
current.next = current.next.next; //这一行和上一行的代码先后顺序不能改,改了会报错
size--;
}
private class Node {
int val;
Node next,prev;
Node(int val) {
this.val = val;
}
}
}
/**
* Your MyLinkedList object will be instantiated and called as such:
* MyLinkedList obj = new MyLinkedList();
* int param_1 = obj.get(index);
* obj.addAtHead(val);
* obj.addAtTail(val);
* obj.addAtIndex(index,val);
* obj.deleteAtIndex(index);
*/
给你单链表的头节点 head
,请你反转链表,并返回反转后的链表。
//方式一:双指针prev和curr
class Solution {
public ListNode reverseList(ListNode head) {
//定义的是单链表
ListNode prev=null,nextTemp==null;
ListNode curr=head;
while(curr != null){
nextTemp=curr.next;
curr.next=prev;
prev=curr;
curr=nextTemp;
}
return prev;
}
}
//双指针方式二:递归—从前往后方向递归
class Solution {
public ListNode reverseList(ListNode head) {
//递归
return reverse(null,head);
}
public ListNode reverse(ListNode prev, ListNode curr){
if(curr==null) return prev;
ListNode temp=curr.next;
curr.next=prev;
return reverse(curr,temp);
}
}
//方式三:递归方式二
class Solution {
public ListNode reverseList(ListNode head) {
//从后往前递归
if(head==null) return null;
if(head.next==null) return head;
//递归调用,翻转第二个节点开始往后的链表
ListNode last=reverseList(head.next);
//翻转头节点与第二个节点的转向
head.next.next=head;
head.next=null;
return last;
}
}