-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoal11.c
66 lines (53 loc) · 1.46 KB
/
goal11.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
// linked list insertion at node
#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 *insertatnode(struct node *head, struct node* prevnode, int data)
{
struct node *ptr = (struct node *)malloc(sizeof(struct node));
ptr->data = data;
ptr->next = prevnode->next;
prevnode->next = ptr;
return head;
}
int main()
{
struct node *head;
struct node *second;
struct node *third;
struct node *fourth;
// allocate memry 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 = insertatnode(head,second, 69);
printf("linked list after insert at end: \n");
linkedlisttraversal(head);
return 0;
}