Leetcode Hot 100刷题记录 -Day19(回文链表)

回文链表

问题描述:

给你一个单链表的头节点 head ,请你判断该链表是否为回文链表。如果是,返回 true ;否则,返回 false

示例 1:

复制代码
输入:head = [1,2,2,1]
输出:true

示例 2:

复制代码
输入:head = [1,2]
输出:false

解题思路:

将链表的值复制到数组列表中,再使用双指针法判断。

java 复制代码
//提交版


/**
 * 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 boolean isPalindrome(ListNode head) {
        List<Integer> list = new ArrayList<>();
        ListNode curr = head;
        while (curr != null){
            list.add(curr.val);
            curr = curr.next;
        }
        int a = 0;
        int b = list.size()-1;
        while (a<b){
            if (list.get(a) != list.get(b))
                return false;
            a++;
            b--;
        }
        return true;

    }
}



//带有输入输出
import dto.ListNode;

import java.util.ArrayList;
import java.util.List;

public class hot_19isPalindrome {
    public boolean isPalindrome(ListNode head){
        List<Integer> list = new ArrayList<>();
        ListNode curr = head;
        while (curr != null){
            list.add(curr.val);
            curr = curr.next;
        }
        int a = 0;
        int b = list.size()-1;
        while (a<b){
            if (list.get(a) != list.get(b))
                return false;
            a++;
            b--;
        }
        return true;
    }

    public static void main(String[] args) {
        ListNode headA = new ListNode(1);
        headA.next = new ListNode(2);
        headA.next.next = new ListNode(2);
        headA.next.next.next = new ListNode(1);
        hot_19isPalindrome hot19isPalindrome = new hot_19isPalindrome();
        boolean result = hot19isPalindrome.isPalindrome(headA);
        System.out.println("输出:" + result);
    }
}
相关推荐
cwj&xyp27 分钟前
Python(二)str、list、tuple、dict、set
前端·python·算法
Amarantine、沐风倩✨33 分钟前
设计一个监控摄像头物联网IOT(webRTC、音视频、文件存储)
java·物联网·音视频·webrtc·html5·视频编解码·七牛云存储
路在脚下@2 小时前
spring boot的配置文件属性注入到类的静态属性
java·spring boot·sql
森屿Serien2 小时前
Spring Boot常用注解
java·spring boot·后端
苹果醋33 小时前
React源码02 - 基础知识 React API 一览
java·运维·spring boot·mysql·nginx
Hello.Reader3 小时前
深入解析 Apache APISIX
java·apache
菠萝蚊鸭3 小时前
Dhatim FastExcel 读写 Excel 文件
java·excel·fastexcel
旭东怪4 小时前
EasyPoi 使用$fe:模板语法生成Word动态行
java·前端·word
007php0074 小时前
Go语言zero项目部署后启动失败问题分析与解决
java·服务器·网络·python·golang·php·ai编程
∝请叫*我简单先生4 小时前
java如何使用poi-tl在word模板里渲染多张图片
java·后端·poi-tl