代码随想录leetcode刷题Day14-双指针,栈和队列

/*
160.链表相交
给你两个单链表的头节点 headA 和 headB ,请你找出并返回两个单链表相交的起始节点。
如果两个链表没有交点,返回 null 。
 */


class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {

        ListNode curA = headA, curB = headB;
        int lenA = 0, lenB = 0;

        while (curA != null) { //先分别遍历得到链表A和链表B的长度
            lenA++;
            curA = curA.next;
        }

        while (curB != null) {
            lenB++;
            curB = curB.next;
        }

        curA = headA; //重置节点位置
        curB = headB;

        if (lenB > lenA){ //如果B比A长,把长度和头节点交换
            ListNode temp = curA;
            curA = curB;
            curB = temp;

            int temp1 = lenA;
            lenA = lenB;
            lenB = temp1;
        }

        //先让curA走dis步,之后依次比较值是否相同即可
        int dis = lenA - lenB;


        while (dis > 0){
            curA = curA.next;
            dis--;
        }

        while (curA != null){
            if (curA != curB){
                curA = curA.next;
                curB = curB.next;
            }else{
                return curA;
            }
        }
        return null;
    }
}

class ListNode {
    int val;
    ListNode next;

    ListNode(int x) {
        val = x;
        next = null;
    }
}

/*
19.删除链表的倒数第N个节点
给你一个链表,删除链表的倒数第 n 个结点,并且返回链表的头结点。
 */

/*
使用快慢指针的方法
 */
class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {

        ListNode dummyNode = new ListNode(0,head);
        //定义虚拟头节点,防止删除头节点导致需要讨论
        ListNode fast = dummyNode;
        ListNode slow = dummyNode;

        for (int i = 0; i < n; i++) { //先让快指针移动n步
            fast = fast.next;
        }
        while (fast.next != null){ //之后快慢指针同时移动,
            // 快指针移动到末尾的时候,慢指针的位置就是要删除元素的前一个元素
            fast = fast.next;
            slow = slow.next;
        }
        slow.next = slow.next.next; //删除掉这个元素

        return dummyNode.next;
    }
}

class ListNode {
    int val;
    ListNode next;

    ListNode() {
    }

    ListNode(int val) {
        this.val = val;
    }

    ListNode(int val, ListNode next) {
        this.val = val;
        this.next = next;
    }
}

/*
232. 用栈实现队列
使用栈实现队列的下列操作:

push(x) -- 将一个元素放入队列的尾部。
pop() -- 从队列首部移除元素。
peek() -- 返回队列首部的元素。
empty() -- 返回队列是否为空。
 */

//思路是使用两个栈处理
class MyQueue {
    Stack<Integer> stackIn;
    Stack<Integer> stackOut;

    public MyQueue() {
        stackIn = new Stack<>();
        stackOut = new Stack<>();
    }

    //放入元素较为简单,直接把元素放入入栈即可
    public void push(int x) {
        stackIn.push(x);
    }

    //调用方法后pop即可
    public int pop() {
        this.dumpStackIn();
        return stackOut.pop();
    }

    //注意可以复用pop方法,弹出之后再把元素放回去,然后再返回元素
    public int peek() {
        int peek = this.pop();
        stackOut.push(peek);
        return peek;
    }

    //如果入栈和出栈都为空,则队列为空
    public boolean empty() {
        return stackIn.isEmpty() && stackOut.isEmpty();
    }

    //私有化一个方法,如果出栈不为空,则直接返回;
    //如果出栈为空,就把入栈的所有元素依次放入出栈中
    private void dumpStackIn() {
        if (!stackOut.isEmpty()) {
            return;
        }
        while (!stackIn.isEmpty()) {
            int pop = stackIn.pop();
            stackOut.push(pop);
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值