题解 | #反转链表#笨蛋方法

反转链表

http://www.nowcoder.com/practice/75e878df47f24fdc9dc3e400ec6058ca

struct ListNode* ReverseList(struct ListNode* pHead ) {
    // write code here
    if(!pHead)
        return pHead;
    struct ListNode *p,*x;
    struct ListNode *head;
    head=(struct ListNode*)malloc(sizeof(struct ListNode));
    head->next=NULL;
    p=pHead;
    while(p)
    {
        x = (struct ListNode*)malloc(sizeof(struct ListNode));
        x->val=p->val;
        x->next=head->next;
        head->next=x;
        p=p->next;
    }
    return head->next;
}

全部评论

相关推荐

勤奋努力的椰子这就开摆:美团骑手在美团工作没毛病
投递美团等公司10个岗位
点赞 评论 收藏
分享
10-09 09:39
门头沟学院 C++
HHHHaos:这也太虚了,工资就一半是真的
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务