-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoal15.c
72 lines (61 loc) · 1.58 KB
/
goal15.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
// linked list deletion a particular data from the linked list
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node *next;
};
void linkedlisttraversal(struct node *ptr)
{
while (ptr != NULL)
{
printf("Element: %d\n", ptr->data);
ptr = ptr->next;
}
}
struct node *deleteaparticulardata(struct node *head, int value)
{
struct node *p = head;
struct node *q = head->next;
while (q->data = value && q->next != NULL)
{
p = p->next;
q = q->next;
}
if (q->data == value)
{
p->next=q->next;
free(q);
}
return head;
}
int main()
{
struct node *head;
struct node *second;
struct node *third;
struct node *fourth;
// allocate memory for nodes in the linked list in the heap
head = (struct node *)malloc(sizeof(struct node));
second = (struct node *)malloc(sizeof(struct node));
third = (struct node *)malloc(sizeof(struct node));
fourth = (struct node *)malloc(sizeof(struct node));
// enter the value of first node and link it to the second node
head->data = 7;
head->next = second;
// linked the second node to the third node
second->data = 77;
second->next = third;
// third node is linked to fourth
third->data = 777;
third->next = fourth;
// fourth node is linked to null
fourth->data = 7777;
fourth->next = NULL;
linkedlisttraversal(head);
head = deleteaparticulardata(head, 77);
printf("linked list after deleting a particular data : \n");
linkedlisttraversal(head);
return 0;
}