-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinkedListByRoy.c
129 lines (101 loc) · 2.4 KB
/
LinkedListByRoy.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
Simanta Kumar Roy
Daffodil International University
221-35-909
*/
#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
int main()
{
struct Node {
int num;
int pos;
int *ptr;
};
typedef struct Node node;
node *NODE,*first,*temp = 0;
char choice = 'O';
first = 0;
printf("Type Any char For Exit . Else Keep Adding number :) :) \n\n");
int count = 0;
while(1)
{
NODE = (node *)malloc(sizeof(node));
printf("Insert %d Index Data : ",count);
if(scanf("%d",&NODE->num)){
NODE->pos = count;
}
else{
break;
}
if(first==0)
{
first = temp = NODE;
}
else{
temp->ptr = NODE;
temp = NODE;
}
fflush(stdin);
count++;
}
temp->ptr = 0;
temp = first;
//Printing List :
printf("\n Printing The linked List.\n\n");
while(temp!=0)
{
printf("[Index : %d] = %d\n",temp->pos,temp->num);
temp = temp->ptr;
}
//Insert A number Befor x;
fflush(stdin);
node data;
printf("\nEnter a [Value and index] for Insert (Except Last Index) : ");
scanf("%d%d",&data.num,&data.pos);
// If You want to add in 0th index
if(data.pos==0){
data.ptr = first;
first = &data;
count = 0;
temp = first;
while(temp!=0)
{
temp->pos = count;
count++;
temp = temp->ptr;
}
}
// If You want to add in any Position Except Last
else{
int i = data.pos -1;
temp = first;
//Finding The Index And Insert Node.
while(temp!=0)
{
if(temp->pos==i){
data.ptr = temp->ptr;
temp->ptr = &data;
break;
}
temp = temp->ptr;
}
count = 0;
temp = first;
while(temp!=0)
{
temp->pos = count;
count++;
temp = temp->ptr;
}
}
//Printing Updated Linked List
temp = first;
while(temp!=0)
{
printf("[Index : %d] = %d\n",temp->pos,temp->num);
temp = temp->ptr;
}
}