leetcode 链表

剑指 Offer II 021. 删除链表的倒数第 n 个结点

class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode dummy = new ListNode(-1, head);
        ListNode pre = dummy, p = head;
        for (int i = 0; i < n; i++) {
            p = p.next;
        }
        while (p != null) {
            p = p.next;
            pre = pre.next;
        }
        pre.next = pre.next.next;
        return dummy.next;
    }
}

剑指 Offer II 022. 链表中环的入口节点

public class Solution {
    public ListNode detectCycle(ListNode head) {
        Set<ListNode> set = new HashSet<>();
        ListNode p = head;
        while (p != null) {
            if (set.contains(p)) {
                return p;
            }
            set.add(p);
            p = p.next;
        }
        return null;
    }
}

剑指 Offer II 023. 两个链表的第一个重合节点

public class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
        Set<ListNode> set = new HashSet<>();
        ListNode p = headA;
        while (p != null) {
            set.add(p);
            p = p.next;
        }
        p = headB;
        while (p != null) {
            if (set.contains(p)) {
                return p;
            }
            p = p.next;
        }
        return null;
    }
}

 剑指 Offer II 024. 反转链表

class Solution {
    public ListNode reverseList(ListNode head) {
        if (head == null) {
            return null;
        }
        ListNode pre = head, p = head.next;
        while (p != null) {
            ListNode t = p.next;
            p.next = pre;
            pre = p;
            p = t;
        }
        head.next = null;
        return pre;
    }
}

 剑指 Offer II 025. 链表中的两数相加

class Solution {
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
        ListNode l1_r = reverseList(l1);
        ListNode l2_r = reverseList(l2);
        ListNode s_r = sum(l1_r, l2_r);
        return reverseList(s_r);
    }

    public ListNode reverseList(ListNode head) {
        ListNode pre = head, p = head.next;
        while (p != null) {
            ListNode t = p.next;
            p.next = pre;
            pre = p;
            p = t;
        }
        head.next = null;
        return pre;
    }

    public ListNode sum(ListNode l1, ListNode l2) {
        ListNode head1 = l1, head2 = l2;
        int c = 0;
        ListNode res = new ListNode(0);
        ListNode p = res;
        while (head1 != null || head2 != null) {
            int n1 = head1 == null ? 0 : head1.val;
            int n2 = head2 == null ? 0 : head2.val;
            int sum = n1 + n2 + c;
            p.next = new ListNode(sum % 10);
            p = p.next;
            c = sum / 10;
            if (head1 != null) {
                head1 = head1.next;
            }
            if (head2 != null) {
                head2 = head2.next;
            }
        }
        if (c > 0) {
            p.next = new ListNode(c);
        }
        return res.next;
    }
}

 剑指 Offer II 026. 重排链表

class Solution {
    public void reorderList(ListNode head) {
        List<ListNode> list = new ArrayList<>();
        ListNode p = head;
        while (p != null) {
            list.add(p);
            p = p.next;
        }
        int left = 0, right = list.size() - 1;
        while (left < right) {
            ListNode t = list.get(left).next;
            list.get(left).next = list.get(right);
            list.get(right).next = t;
            left++;
            right--;
        }
        list.get(left).next = null;
    }
}

 剑指 Offer II 027. 回文链表

class Solution {
    public boolean isPalindrome(ListNode head) {
        List<ListNode> list = new ArrayList<>();
        ListNode p = head;
        while (p != null) {
            list.add(p);
            p = p.next;
        }
        int l = 0, r = list.size() - 1;
        while (l < r) {
            if (list.get(l).val != list.get(r).val) {
                return false;
            }
            l++;
            r--;
        }
        return true;
    }
}

 剑指 Offer II 028. 展平多级双向链表

class Solution {
    public Node flatten(Node head) {
        flattenGetTail(head);
        return head;
    }
    public Node flattenGetTail(Node head) {
        Node node = head;
        Node tail = null;
        while (node != null) {
            Node next = node.next;
            if (node.child != null) {
                Node child = node.child;
                Node childTail = flattenGetTail(child);

                node.child = null;
                node.next = child;
                child.prev = node;

                childTail.next = next;
                if (next != null) {
                    next.prev = childTail;
                }
                tail = childTail;
            } else {
                tail = node;
            }
            node = next;
        }
        return tail;
    }
}

 剑指 Offer II 029. 排序的循环链表

class Solution {
    public Node insert(Node head, int insertVal) {
        if (head == null) {
            head = new Node(insertVal);
            head.next = head;
            return head;
        }
        if (head.next == null) {
            head.next = new Node(insertVal, head);
            return head;
        }
        Node curr = head, next = head.next, biggest = head;
        while (next != head && !(curr.val <= insertVal && next.val >= insertVal)) {
            curr = curr.next;
            next = next.next;
            if (biggest.val <= curr.val) {
                biggest = curr;
            }
        }
        if (curr.val <= insertVal && next.val >= insertVal) {
            curr.next = new Node(insertVal, next);
        } else {
            Node t = new Node(insertVal, biggest.next);
            biggest.next = t;
        }
        return head;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值