-
Notifications
You must be signed in to change notification settings - Fork 0
/
array_list.c
171 lines (145 loc) · 4.92 KB
/
array_list.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
#include <stdio.h>
#include <stdlib.h>
#include "list.h"
// Пользовательская структура, которая скрывает механизм хранения данных.
typedef struct List_ {
int *array; // динамический массив, в котором будут раниться все данные
int length; // размер списка: последний занятый индекс в array
int capacity; // ёмкость списка: реальный размер массива array
// если нужно, то добавьте дополнительные поля
} List;
// Создание пустого листа
List *NewList() {
List *lst = (List *)malloc(sizeof(List));
lst->array = (int *)calloc(2, sizeof(int));
lst->length = 0;
lst->capacity = 2;
return lst;
}
void DestroyList(List *this) {
free(this->array);
free(this);
}
// Вставка элемента в конец списка
void Append(List *this, int value) {
if (this->length == this->capacity) {
this->array = (int *)realloc(this->array, this->capacity * 2 * sizeof(int));
this->capacity *= 2;
}
*(this->array + this->length) = value;
this->length++;
}
// Вставка элемента в начало списка
void Prepend(List *this, int value) {
if (this->length == this->capacity) {
this->array = (int *)realloc(this->array, this->capacity * 2 * sizeof(int));
this->capacity *= 2;
}
this->length++;
for (int i = this->length - 1; i > 0; i--) {
*(this->array + i) = *(this->array + i - 1);
}
*(this->array) = value;
}
// Вставить все элементы одного списка в конец другого
void AppendAll(List *this, const List *that) {
if (this->length + that->length == 0) {
return;
}
if (this->capacity - this->length < that->length) {
while (this->capacity - this->length < that->length) {
this->capacity *= 2;
}
this->array = (int *)realloc(this->array, sizeof(int) * this->capacity);
}
int *cur_elem = this->array + this->length;
for (int i = 0; i < that->length; i++, cur_elem++) {
*cur_elem = GetAt(that, i);
}
this->length += that->length;
}
// Вставка элемента после индекса
void InsertAt(List *this, int index, int value) {
if (index > this->length - 1 || index < 0) {
printf("Ошибка:Индекс недоступен");
exit(-1);
}
if (this->length == this->capacity) {
this->array = (int *)realloc(this->array, this->capacity * 2 * sizeof(int));
this->capacity *= 2;
}
this->length++;
for (int i = this->length - 1; i > index; i--) {
*(this->array + i) = *(this->array + i - 1);
}
*(this->array + index) = value;
}
// Удаление элемента по индексу
void RemoveAt(List *this, int index) {
if (index > this->length - 1 || index < 0) {
printf("Ошибка:Индекс недоступен");
exit(-1);
}
this->length--;
for (int i = index; i < this->length; i++) {
*(this->array + i) = *(this->array + i + 1);
}
if (this->length < this->capacity / 4) {
this->capacity /= 2;
this->array = (int *)realloc(this->array, this->capacity * sizeof(int));
}
}
// Удаление всех элементов из списка
void RemoveAll(List *this) {
free(this->array);
this->array = (int *)calloc(2, sizeof(int));
this->length = 0;
this->capacity = 2;
}
// Удаление элемента с конца списка (функция возвращает удаленный элемент)
int Pop(List *this) {
if (this->length == 0) {
printf("Ошибка:Пустой лист");
exit(-1);
}
int value = GetAt(this, this->length - 1);
this->length--;
if (this->length < this->capacity / 4) {
this->capacity /= 2;
this->array = (int *)realloc(this->array, this->capacity * sizeof(int));
}
return value;
}
// Удаление элемента с начала списка (функция возвращает удаленный элемент)
int Dequeue(List *this) {
if (this->length == 0) {
printf("Ошибка:Пустой лист");
exit(-1);
}
int value = GetAt(this, 0);
this->length--;
for (int i = 0; i < this->length; i++) {
*(this->array + i) = *(this->array + i + 1);
}
if (this->length < this->capacity / 4) {
this->capacity /= 2;
this->array = (int *)realloc(this->array, this->capacity * sizeof(int));
}
return value;
}
// Вычисление длины списка
int Length(const List *this) {
return this->length;
}
// Взятие элемента из списка по индексу
int GetAt(const List *this, int index) {
if (this->length == 0) {
printf("Ошибка:Пустой лист");
exit(-1);
}
if (index > this->length - 1 || index < 0) {
printf("Ошибка:Элемент # %d не существует", index);
exit(-1);
}
return *(this->array + index);
}