-
Notifications
You must be signed in to change notification settings - Fork 0
/
array.c
223 lines (179 loc) · 4.56 KB
/
array.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/* array.c - data array
*
* Copyright (C) 2012 Borislav Sapundzhiev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or (at
* your option) any later version.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "array.h"
static int
cpo_array_setsize(cpo_array_t *a, asize_t elements);
cpo_array_t *
cpo_array_create(asize_t size, asize_t elem_size)
{
cpo_array_t *a = malloc(sizeof(cpo_array_t));
if (a == NULL) {
return NULL;
}
a->v = calloc(size, elem_size);
a->num = 0;
a->max = size;
a->elem_size = elem_size;
return a;
}
static int cpo_array_preallocate(cpo_array_t *a, asize_t elements)
{
void *newv;
asize_t newmax = a->max;
while (elements >= newmax) {
newmax = (newmax + 1);
}
newv = malloc(newmax * a->elem_size);
if (newv == NULL) {
return -1;
}
memcpy(newv, a->v, a->num * a->elem_size);
if (a->v)
free(a->v);
a->v = newv;
a->max = newmax;
return 0;
}
static int cpo_array_setsize(cpo_array_t *a, asize_t elements)
{
if (elements > a->max) {
int result = cpo_array_preallocate(a, elements);
if (result) {
return result;
}
}
a->num = elements;
return 0;
}
void *
cpo_array_get_at(cpo_array_t *a, asize_t index)
{
void *elt = NULL;
if (index < a->num) {
elt = (unsigned char*) a->v + a->elem_size * index;
}
return elt;
}
void *
cpo_array_push(cpo_array_t *a)
{
void * elt = NULL;
asize_t ix = a->num;
int result = cpo_array_setsize(a, ix + 1);
if (!result) {
elt = (unsigned char*) a->v + a->elem_size * ix;
}
return elt;
}
void *
cpo_array_insert_at(cpo_array_t *a, asize_t index)
{
void *elt = NULL;
if (index <= a->num) {
int result = cpo_array_setsize(a, a->num + 1);
if(!result) {
asize_t nmove = a->num - index - 1;
memmove((unsigned char*)a->v + a->elem_size * (index + 1),
(unsigned char*)a->v + a->elem_size * index, nmove * a->elem_size);
elt = (unsigned char*) a->v + a->elem_size * index;
}
}
return elt;
}
void *
cpo_array_remove(cpo_array_t *a, asize_t index)
{
void *elt = NULL;
if (index < a->num) {
asize_t nmove = a->num - index - 1;
memmove((unsigned char*)a->v +a->elem_size * a->num,
(unsigned char*)a->v +a->elem_size * index, a->elem_size);
memmove((unsigned char*) a->v + a->elem_size * index,
(unsigned char*) a->v + a->elem_size * (index + 1), nmove * a->elem_size);
elt = (unsigned char*)a->v + a->elem_size * a->num;
a->num--;
}
return elt;
}
void cpo_array_destroy(cpo_array_t *a)
{
if (a->v) {
free(a->v);
}
free(a);
}
void cpo_array_qsort(cpo_array_t *a,
int (*cmp_func)(const void *, const void *))
{
qsort(a->v, a->num, a->elem_size, cmp_func);
}
void *cpo_array_bsearch(cpo_array_t *ar, const void *key,
int (*compar)(const void *, const void *))
{
cpo_array_qsort(ar, compar);
return bsearch(key, ar->v, ar->num, ar->elem_size, compar);
}
int array_cmp_int_asc(const void *a, const void *b)
{
return (*(int*) a - *(int*) b);
}
int array_cmp_int_dsc(const void *a, const void *b)
{
return (*(int*) b - *(int*) a);
}
int array_cmp_str_asc(const void *a, const void *b)
{
return strcmp((char *) a, (char *) b);
}
int array_cmp_str_dsc(const void *a, const void *b)
{
return strcmp((char *) b, (char *) a);
}
/* stack impl */
void * stack_push(cpo_array_t *stack)
{
if (stack->num == stack->max) {
fputs("Error: stack overflow\n", stderr);
return NULL;
}
return cpo_array_insert_at(stack, 0);
}
void * stack_push_back(cpo_array_t *stack)
{
if (stack->num == stack->max) {
fputs("Error: stack overflow\n", stderr);
return NULL;
}
return cpo_array_push(stack);
}
void * stack_back(cpo_array_t *stack)
{
return cpo_array_get_at(stack, stack->num -1 );
}
void * stack_pop(cpo_array_t *stack)
{
if (stack->num == 0) {
fputs("Error: stack underflow\n", stderr);
return NULL;
}
return cpo_array_remove(stack, 0);
}
void * stack_pop_back(cpo_array_t *stack)
{
if (stack->num == 0) {
fputs("Error: stack underflow\n", stderr);
return NULL;
}
return cpo_array_remove(stack, stack->num -1);
}