-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremove_kth_last_node_in_linked_list.cpp
60 lines (50 loc) · 1.21 KB
/
remove_kth_last_node_in_linked_list.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//Remove kth last node from LinkedList
//https://ide.geeksforgeeks.org/X2GQ35qElm
#include<bits/stdc++.h>
using namespace std;
struct Node{
int data;
struct Node* next;
};
void printLL(struct Node* head){
if(head == NULL) return;
while(head!=NULL){
cout<<head->data<<" ";
head = head->next;
}
cout<<"\n";
}
Node* newNode(int key)
{
Node* temp = new Node;
temp->data = key;
temp->next = NULL;
return temp;
}
void removeKthLastNode(Node *head, int k){
Node *first = head; Node *second = head;
while(k-- > 0)
first = first->next;
if(first == NULL)cout<<head->next<<"\n";
first = first->next;
while(first!= NULL){
second = second->next;
first = first->next;
}
second->next = second->next->next;
printLL(head);
}
int main()
{
Node* head1 = newNode(1);
head1->next = newNode(2);
head1->next->next = newNode(3);
head1->next->next->next = newNode(4);
head1->next->next->next->next = newNode(5);
head1->next->next->next->next->next = newNode(6);
head1->next->next->next->next->next->next = newNode(7);
printLL(head1);
cout<<"\n\n";
removeKthLastNode(head1, 5);
return 0;
}