Example:
1->2->3->4->5->6->7->NULL
For the above linked list kth(k=3) node from last is 5.
Code:(in C)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct node* getKthNodeFromLast(struct node* head , int k) | |
{ | |
if(head==null || k<1) | |
return null; | |
struct node* temp=head,*kthnodefromlast=head; | |
while(--k>0) | |
{ | |
temp=temp->link; | |
if(temp==null) | |
return null; | |
} | |
while((temp=temp->link)!=null) | |
kthnodefromlast=kthnodefromlast->link; | |
return kthnodefromlast; | |
} |
Space Complexity: O(1)
Please let me know if you have any questions .
1 comment:
I think,there is no other better solution than this..
If u know let others to know
Post a Comment