Leetcode 回文链表
摘要:
Day 12 第一题 用数组存储链表的数值,在检测是否是回文数组,数组长度不可变,所以用list class Solution { public boolean isPalindrome(ListNode head) { List<Integer> list = new ArrayList<>(); 阅读全文
posted @ 2024-03-27 20:33 安静的聆 阅读(4) 评论(0) 推荐(0) 编辑