-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path41_inserting_in_linked_list.c
98 lines (82 loc) · 2.14 KB
/
41_inserting_in_linked_list.c
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <stdio.h>
#include <stdlib.h>
struct Node{
int data;
struct Node* next;
};
struct Node* createNode(int data){
struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));
newNode->data = data;
newNode->next = NULL;
}
void insertAtBegining(struct Node** head,int data){ // structure ka pointer jab bhi lo toh double pointer lo, warna pointer ka copy pass kr deta hai
struct Node* newNode = createNode(data);
newNode->next = *head;
*head = newNode;
}
void insertAtEnd(struct Node** head,int data){
struct Node* newNode = createNode(data);
// handling empty list
if(*head == NULL){
*head = newNode;
return;
}
struct Node* temp = *head;
while(temp->next != NULL){
temp = temp->next;
}
temp->next = newNode;
}
void insertAtPosition( int position, struct Node** head,int data){ // assuming position starts from 0
struct Node* newNode = createNode(data);
// handling empty list
if(*head == NULL){
*head = newNode;
return;
}
if(position==0){
newNode->next = *head;
*head = newNode;
return;
}
struct Node* temp = *head;
for(int i=0; temp != NULL && i<position-1;i++){
temp = temp->next;
}
// dealing out of bound
if(temp==NULL){
printf("Index out of Bound");
free(newNode);
return;
}
newNode->next = temp->next;
temp->next = newNode;
}
void printLinkedList(struct Node** head){
struct Node* temp = *head;
int i=0;
while(temp != NULL){
printf("%d %x { data = %d , next = %x }\n",i,temp,temp->data,temp->next);
temp = temp->next;
i++;
}
}
void freeLinkedList(struct Node** head){
struct Node* temp = *head;
struct Node* temp2 = *head;
while(temp != NULL){
temp2 = temp->next;
free(temp);
temp = temp2;
}
}
int main(){
struct Node* head = createNode(10);
insertAtEnd(&head,20);
insertAtPosition(1,&head,15);
printLinkedList(&head);
insertAtBegining(&head,5);
printf("\n");
printLinkedList(&head);
freeLinkedList(&head);
}