-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path35.c
More file actions
96 lines (85 loc) · 1.94 KB
/
Copy path35.c
File metadata and controls
96 lines (85 loc) · 1.94 KB
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
#include <stdio.h>
#include <stdlib.h>
struct Node
{
int data;
struct Node* prev;
struct Node* next;
};
struct Node* createNode(int data)
{
struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));
if (newNode == NULL)
{
printf("Memory allocation failed.\n");
exit(1);
}
newNode->data = data;
newNode->prev = NULL;
newNode->next = NULL;
return newNode;
}
void insertAtPosition(struct Node** head, int data, int position)
{
struct Node* newNode = createNode(data);
if (position == 1)
{
newNode->next = *head;
if (*head != NULL)
{
(*head)->prev = newNode;
}
*head = newNode;
}
else
{
struct Node* current = *head;
int currentPosition = 1;
while (currentPosition < position - 1 && current != NULL)
{
current = current->next;
currentPosition++;
}
if (current == NULL)
{
printf("Invalid position.\n");
free(newNode);
return;
}
newNode->next = current->next;
if (current->next != NULL)
{
current->next->prev = newNode;
}
current->next = newNode;
newNode->prev = current;
}
}
void display(struct Node* head)
{
struct Node* current = head;
while (current != NULL)
{
printf("%d <-> ", current->data);
current = current->next;
}
printf("NULL\n");
}
int main()
{
struct Node* head = NULL;
int data, position, numInsertions;
printf("Enter the number of insertions: ");
scanf("%d", &numInsertions);
for (int i = 0; i < numInsertions; i++)
{
printf("Enter the data to insert: ");
scanf("%d", &data);
printf("Enter the position to insert at: ");
scanf("%d", &position);
insertAtPosition(&head, data, position);
}
printf("Doubly Linked List: ");
display(head);
return 0;
}