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

19. 删除链表的倒数第N个节点——LeetCode

时间:2019-05-16 12:21:01      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:mic   技术   心得   指针   node   mamicode   图片   etc   bsp   

技术图片

 

心得:对于链表问题,加头指针可能简化问题

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {
        if(head==null)
            return null;
	        ArrayList<ListNode> list=new ArrayList<>();//存放节点
	        ListNode tmp=new ListNode(0);//头指针
               ListNode rHead=tmp;
	        tmp.next=head;
	        while(tmp!=null)
	        {     
	        	list.add(tmp);
	        	tmp=tmp.next;
	        }
	         list.get(list.size()-n-1).next=list.get(list.size()-n).next;
	       return rHead.next;
	    }
}

  

 

19. 删除链表的倒数第N个节点——LeetCode

标签:mic   技术   心得   指针   node   mamicode   图片   etc   bsp   

原文地址:https://www.cnblogs.com/pc-m/p/10874871.html

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