摘要: 2020-04-20 回文链表 请判断一个链表是否为回文链表。 题解: 思路1:数组记录值+双指针判断 var isPalindrome = function (head) { if (!head) return true; let valArr = []; let fn = (node) => { 阅读全文
posted @ 2020-04-20 09:40 蓝小胖纸 阅读(131) 评论(0) 推荐(0) 编辑