/**
* Definition for ListNode.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int val) {
* this.val = val;
* this.next = null;
* }
* }
*/
public class Solution {
/**
* @param head: The first node of linked list.
* @param n: An integer.
* @return: The head of linked list.
*/
ListNode removeNthFromEnd(ListNode head, int n) {
// write your code here
//count size of list
if(n == 0 && head ==null){
return null;
}
if(n == 0){
return head;
}
//compute list length
int len = 0;
ListNode node = head;
while(node != null){
len++;
node = node.next;
}
//n==len,删除head
if (n==len){
return head.next;
}
//len>n
int count = 1;
ListNode node1 = head;
while (count != len-n){
node1 = node1.next;
count++;
}
node1.next = node1.next.next;
return head;
}
}
lintcode 166 删除链表倒数第n个数
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 给定一个链表,删除链表中倒数第n个节点,返回链表的头节点。 注意事项链表中的节点个数大于等于n您在真实的面试中是否...
- 版权声明:本文为博主原创文章,未经博主允许不得转载。 难度:容易 要求: 找到单链表倒数第n个节点,保证链表中节点...
- 找到单链表倒数第n个节点,保证链表中节点的最少数量为n。您在真实的面试中是否遇到过这个题?Yes样例给出链表 3-...