leetcode234
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode234相关的知识,希望对你有一定的参考价值。
/** * Definition for singly-linked list. * public class ListNode { * public int val; * public ListNode next; * public ListNode(int x) { val = x; } * } */ public class Solution { public bool IsPalindrome(ListNode head) { if (head == null) { return true; } else { Queue<int> Q = new Queue<int>(); Stack<int> S = new Stack<int>(); do { Q.Enqueue(head.val); S.Push(head.val); head = head.next; } while (head != null); var len = S.Count; for (int i = 0; i < len; i++) { var s = S.Pop(); var q = Q.Dequeue(); if (s != q) { return false; } } return true; } } }
https://leetcode.com/problems/palindrome-linked-list/#/description
以上是关于leetcode234的主要内容,如果未能解决你的问题,请参考以下文章