题解 | #判断一个链表是否为回文结构#

判断一个链表是否为回文结构

https://www.nowcoder.com/practice/3fed228444e740c8be66232ce8b87c2f

/**
 * struct ListNode {
 *  int val;
 *  struct ListNode *next;
 * };
 */
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 *
 * @param head ListNode类 the head
 * @return bool布尔型
 */
#include <stdbool.h>
bool isPail(struct ListNode* head ) {
    if (head == NULL || head->next == NULL)
        return true;
    struct ListNode* n1 = head;
    struct ListNode* head2  = NULL;
    struct ListNode* pcur = NULL;
    while (n1) {
        pcur = (struct ListNode*)malloc(sizeof(struct ListNode));
        pcur->val = n1->val;
        pcur->next = head2;
        head2 = pcur;
        n1 = n1->next;
    }
    n1 = head;
    while (n1) {
        if (n1->val != pcur->val )
            return false;
        n1 = n1->next;
        pcur = pcur->next;
    }
    return true;
}











全部评论

相关推荐

Elastic90:公司不要求加班,但 又不允许你准点下班,经典又当又立
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务