-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeletingNodeinLinkedList.cpp
78 lines (56 loc) · 1.22 KB
/
DeletingNodeinLinkedList.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**********
* Following is the Node class that is already written.
class Node{
public:
int data;
Node *next;
Node(int data){
this -> data = data;
this -> next = NULL;
}
};
*********/
int length(Node*head){
int count=0 ;
Node* temp=head ;
while(temp!=NULL){
temp=temp->next ;
count++ ;
}
return count ;
}
Node* deleteNode(Node *head, int i) {
int result = length(head);
Node* p = head ;
Node* q = head ;
//Attempting this Question through a Two Pointer Approach .
if(i<result){
if(i==0){
head=head->next ;
return head;
}
else{
int count=0 ;
while(count<i-1){
p=p->next ;
count++ ;
}
count=0 ;
while(count<i){
q=q->next ;
count++ ;
}
p->next=q->next ;
delete q ;
return head ;
}
}
else
{
return head ;
}
//Now There will be three Cases in Deletion of the Node as Well
//1. Deletion at the Beginning of the Linked List
//2. Deletion at the Middle of the Linked List
//3. Deletion at the End of the Linked List .
}