码迷,mamicode.com
首页 > 其他好文 > 详细

Remove Nth Node From End of List

时间:2015-03-15 13:50:26      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode *removeNthFromEnd(ListNode *head, int n) {
      //  if(n==0) return head;
        int count = 0;//总的链表长度
        ListNode *Head = (ListNode *)malloc(sizeof(ListNode));
        Head->next = head;//为链表加一个头结点
        ListNode *tail = head;
        while(tail) {
            count++;
            tail = tail->next;
        }
        //if(count<n) return NULL;
        int num = count-n;
        tail = Head;
        while(num--){//找到要删除节点的前一个节点的位置
            tail = tail->next;
        }
        tail->next = tail->next->next;//删除节点
        return Head->next;
    }
};

 

Remove Nth Node From End of List

标签:

原文地址:http://www.cnblogs.com/llei1573/p/4339618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!