-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsort-stock.c
182 lines (181 loc) · 3.67 KB
/
sort-stock.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
* Complete the 'itemsSort' function below.
*
* The function is expected to return an INTEGER_ARRAY.
* The function accepts INTEGER_ARRAY items as parameter.
*/
/*
* To return the integer array from the function, you should:
* - Store the size of the array to be returned in the result_count variable
* - Allocate the array statically or dynamically
*
* For example,
* int* return_integer_array_using_static_allocation(int* result_count) {
* *result_count = 5;
*
* static int a[5] = {1, 2, 3, 4, 5};
*
* return a;
* }
*
* int* return_integer_array_using_dynamic_allocation(int* result_count) {
* *result_count = 5;
*
* int *a = malloc(5 * sizeof(int));
*
* for (int i = 0; i < 5; i++) {
* *(a + i) = i + 1;
* }
*
* return a;
* }
*
*/
#include <stdio.h>
#include <stdlib.h>
struct node
{
int key;
int val;
struct node *next;
};
typedef struct node Map;
void insert(Map *mpp, int key, int val)
{
Map *newMap = malloc(sizeof(Map));
newMap->key = key;
newMap->val = val;
newMap->next = NULL;
Map *pos = mpp;
if (pos->next != NULL)
{
while (pos->next != NULL)
{
pos = pos->next;
}
pos->next = newMap;
}
else
{
pos->next = newMap;
}
}
void delete (Map *mpp, int val)
{
Map *pos = mpp;
while (pos != NULL && pos->next->val != val)
{
pos = pos->next;
}
Map *temp = pos->next;
pos->next = temp->next;
free(temp);
}
void incCount(Map *mpp, int key)
{
Map *pos = mpp;
while (pos != NULL && pos->key != key)
{
pos = pos->next;
}
pos->val = pos->val + 1;
}
int find(Map *mpp, int key)
{
Map *pos = mpp;
while (pos != NULL && pos->key != key)
{
pos = pos->next;
}
if (pos != NULL)
{
return 1;
}
return 0;
}
void sort(int items[], int items_count)
{
for (int i = 0; i < items_count - 1; i++)
{
for (int j = 0; j < items_count - i - 1; j++)
{
if (items[j] > items[j + 1])
{
int temp = items[j];
items[j] = items[j + 1];
items[j + 1] = temp;
}
}
}
}
Map *findVal(Map *mpp, int val)
{
Map *pos = mpp;
while (pos != NULL && pos->val != val)
{
pos = pos->next;
}
return pos;
}
int *itemsSort(int items_count, int *items, int *result_count)
{
int *result = malloc((items_count) * sizeof(int));
sort(items, items_count);
Map *mpp = malloc(sizeof(Map));
mpp->next = NULL;
int c = 0;
for (int i = 0; i < items_count; i++)
{
if (find(mpp, items[i]))
{
incCount(mpp, items[i]);
}
else
{
insert(mpp, items[i], 1);
c++;
}
}
int count[c];
int k = 0;
Map *pos = mpp->next;
while (pos != NULL)
{
count[k] = pos->val;
pos = pos->next;
k++;
}
sort(count, c);
int f = 0;
for (int i = 0; i < c; i++)
{
Map *val = findVal(mpp, count[i]);
int v = val->val;
while (v != 0)
{
result[f] = val->key;
f++;
v--;
}
delete (mpp, val->val);
}
*result_count = items_count;
return result;
}
// int main()
// {
// int items_count;
// scanf("%d", &items_count);
// int items[items_count];
// for (int i = 0; i < items_count; i++)
// {
// scanf("%d", &items[i]);
// }
// int *res;
// res = itemsSort(items_count, items, res);
// for (int i = 0; i < items_count; i++)
// {
// printf("%d\n", res[i]);
// }
// return 0;
// }