-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoal14.c
69 lines (58 loc) · 1.44 KB
/
goal14.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
// linked list deletion at end
#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 *deleteatend(struct node *head)
{
struct node *p = head;
struct node *q = head->next;
while(q->next !=NULL)
{
p = p->next;
q=q->next;
}
p->next = NULL;
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 = deleteatend(head);
printf("linked list after deleting at an index: \n");
linkedlisttraversal(head);
return 0;
}