This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
felix
/
ftb
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Захтеви за спајање
0
Издања
0
Вики
Activity
Преглед изворни кода
arraylsits can now reserve
banana-cakes
Felix Brendel
пре 6 година
родитељ
635af49d52
комит
7d8eabf479
1 измењених фајлова
са
7 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
arraylist.hpp
+ 7
- 0
arraylist.hpp
Прегледај датотеку
@@ -51,6 +51,13 @@ struct Array_List {
next_index++;
}
void reserve(unsigned int count) {
if (next_index+count <= length) {
length *= 2;
data = (type*)realloc(data, length * sizeof(type));
}
}
type& operator[](int index) {
return data[index];
}
Write
Preview
Loading…
Откажи
Сачувај