-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoal19.c
76 lines (63 loc) · 1.6 KB
/
goal19.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
// insertion at index in a circular linked list
#include <stdio.h>
#include <stdlib.h>
struct node
{
int data;
struct node *next;
};
void clltraversal(struct node *head)
{
struct node * ptr = head;
do
{
printf("Element is: %d\n", ptr->data);
ptr = ptr->next;
}
while (ptr != head);
}
//here index starts from 0 and postion from 1
struct node * insertatindex(struct node *head, int index, int data)
{
struct node *ptr = (struct node *)malloc(sizeof(struct node));
ptr->data = data;
struct node *p = head;
int i = 0;
while (i != index-1)
{
p = p->next;
i++;
}
ptr->next = p->next;
p->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 third 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 = head;
clltraversal(head);
head = insertatindex( head,2, 23);
printf("\n-------------\n\n");
clltraversal(head);
return 0;
}