forked from XdithyX/Ds-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsortedpush.c
100 lines (91 loc) · 1.47 KB
/
sortedpush.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
#include <stdio.h>
#include <stdlib.h>
struct stack
{
int data;
struct stack *ptr;
};
void create(struct stack **s)
{
*s = NULL;
}
int isEmpty(struct stack *s)
{
if (s == NULL)
return 1;
return 0;
}
void push(struct stack **s, int data)
{
struct stack *temp = (struct stack *)malloc(sizeof(*temp));
if (temp == NULL)
{
return;
}
temp->data = data;
temp->ptr = *s;
*s = temp;
}
int pop(struct stack **s)
{
int data;
struct stack *temp;
data = (*s)->data;
temp = *s;
(*s) = (*s)->ptr;
free(temp);
return data;
}
int top(struct stack *s)
{
return (s->data);
}
void sort_stack_and_insert(struct stack **s, int data)
{
if (isEmpty(*s) || data > top(*s))
{
push(s, data);
return;
}
int temp = pop(s);
sort_stack_and_insert(s, data);
push(s, temp);
}
void sort_stack(struct stack **s)
{
if (!isEmpty(*s))
{
int data = pop(s);
sort_stack(s);
sort_stack_and_insert(s, data);
}
}
void display_stack(struct stack *s)
{
while (s)
{
printf("%d ", s->data);
s = s->ptr;
}
printf("\n");
}
int main(void)
{
struct stack *top;
create(&top);
int n;
printf("\nEnter the number of elements to be pushed to the stack : ");
scanf("%d",&n);
int i,data;
printf("\nInput the stack elements : ");
for(i = 0; i < n; i++)
{
scanf("%d",&data);
push(&top, data);
}
printf("\n");
sort_stack(&top);
printf("Sorted Stack : ");
display_stack(top);
return 0;
}