首页 > 代码库 > 2.2 Kth element linked list
2.2 Kth element linked list
Problem
Implement an algorithm to find the kth to last element of a singly linked list.
Solution
1 public static ListNode findElement(ListNode head, int k) { 2 if(k <= 0) return null; 3 4 ListNode fast = head; 5 ListNode slow = head; 6 7 for(int i=0; i<k-1; i++) { 8 if(fast == null) return null; //edge case 9 fast = fast.next;10 }11 12 //fast = null13 if(fast == null) {14 return null;15 }16 17 while(fast.next != null) {18 fast = fast.next;19 slow = slow.next;20 }21 22 return slow;23 }
2.2 Kth element linked list
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。