-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSingly Linked List
135 lines (122 loc) · 3.05 KB
/
Singly Linked List
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
//Singly linked list
#include <stdio.h>
#include <iostream>
using namespace std;
struct ListNode{
int data;
struct ListNode *next;
};
int ListLength(struct ListNode *head){
int count=0;
struct ListNode *curr=head;
while(curr!=NULL){
printf("%d", curr->data);
curr = curr->next;
count++;
}
return count;
}
//head itself is a pointer
void InsertInLinkedList(struct ListNode **ptrtohead, int data, int position){
//preparing new node
struct ListNode *newnode = (ListNode *)malloc(sizeof(ListNode));
newnode->data = data;
struct ListNode *head, *curr, *prevcurr;
head=*ptrtohead;
curr=head;
int count=1;
bool inserted = 0;
//insert at start
if(position==1){
newnode->next= head;
*ptrtohead = newnode;
}
else {
//insert in between
while(curr!=NULL && inserted==0){
if(position-count==1){
newnode->next = curr->next;
curr->next = newnode;
inserted=1;
}
else{
count++;
prevcurr=curr;
curr=curr->next;
}
}
//insert at end
if(inserted==0){
if(position==count)
prevcurr->next = newnode;
else
printf("\nPosition too far.No insertion possible.");
}
}
}
void DeleteNodefromLinkedList(struct ListNode **ptrtohead, int position){
struct ListNode *head,*curr,*prevcurr,*del,*prevprevcurr;
head = *ptrtohead;
curr=head;
int deleted=0,count=1;
if(head==NULL){
printf("List empty");
return;
}
//delete start
if(position==1){
*ptrtohead = head->next;
free(head);
}
else{
//delete from in between
while(curr!=NULL && deleted==0){
if(position-count==1){
del=curr->next;
curr->next = del->next;
free(del);
deleted=1;
}
else{
count++;
prevprevcurr=prevcurr;
prevcurr=curr;
curr=curr->next;
}
}
//delete at end
if(deleted==0){
prevprevcurr->next = NULL;
free(prevcurr);
}
}
}
void DeleteLinkedList(struct ListNode **ptrtohead){
struct ListNode *curr,*del;
curr = *ptrtohead;
while(curr!=NULL){
del=curr;
curr=curr->next;
free(del);
}
*ptrtohead = NULL;
}
int main() {
//creating a singly linked list
struct ListNode *a,*b,*c,*head;
a = (ListNode *)malloc(sizeof(ListNode));
b = (ListNode *)malloc(sizeof(ListNode));
c = (ListNode *)malloc(sizeof(ListNode));
a->next = b;
b->next = c;
a->data = 1;
b->data = 2;
c->data =4;
head=a;
InsertInLinkedList(&head,5,4);
DeleteNodefromLinkedList(&head,2);
DeleteLinkedList(&head);
int count = ListLength(head);
printf("\nCount:%d", count);
return 0;
}