-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathN_ll_ins.c
81 lines (70 loc) · 1.4 KB
/
N_ll_ins.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
#include<stdio.h>
#include<stdlib.h>
struct node
{
int item;
struct node * next;
};
struct node * first;
void insert(struct node * nptr)
{
struct node * cur_ptr,* prev_ptr=NULL;
int x= nptr->item;
cur_ptr=first;
if(cur_ptr->item>x)
{
first=nptr;
nptr->next=cur_ptr;
return;
}
else
{
while(cur_ptr->next!=NULL&&cur_ptr->item<=x)
{
prev_ptr=cur_ptr;
cur_ptr=cur_ptr->next;
}
if(cur_ptr->next==NULL&&cur_ptr->item<x)
{
nptr->next=NULL;
cur_ptr->next=nptr;
}
else
{
prev_ptr->next=nptr;
nptr->next=cur_ptr;
}
}
}
int main()
{
int n,x;
struct node * newptr,* cur_ptr;
scanf("%d",&n);
for(int i=0;i<n;i++)
{
newptr=(struct node *)malloc(sizeof(struct node));
if (newptr!=NULL)
{
scanf("%d",&x);
newptr->item=x;
newptr->next=NULL;
if(i==0)
{
first=newptr;
cur_ptr=first;
}
else
{
insert(newptr);
}
}
}
cur_ptr=first;
while(cur_ptr!=NULL)
{
printf("%d\n",cur_ptr->item);
cur_ptr=cur_ptr->next;
}
return 0;
}