SHOW:
|
|
- or go back to the newest paste.
1 | #include <iostream> | |
2 | using std::cin; | |
3 | using std::cout; | |
4 | ||
5 | struct MyVector{ | |
6 | /* paste your code here */ | |
7 | }; | |
8 | ||
9 | - | int size(int) { |
9 | + | int size(int) { // Возвращает ближайшую степень двойки |
10 | /* paste your code here */ | |
11 | } | |
12 | ||
13 | - | void read(MyVector&, int) { |
13 | + | void read(MyVector&, int) { // Считывает вектор размера n |
14 | /* paste your code here */ | |
15 | } | |
16 | ||
17 | - | void print(MyVector&) { |
17 | + | void print(MyVector&) { |
18 | // Выводит size и capcasity через пробел, а на следующей строке сам вектор. После вывода вектора обязателен std::endl | |
19 | /* paste your code here */ | |
20 | } | |
21 | - | void move(MyVector&, MyVector&) { |
21 | + | |
22 | void del(MyVector&) { // Очищает вектор | |
23 | /* paste your code here */ | |
24 | } | |
25 | ||
26 | void move(MyVector&, MyVector&) { // Перемещает вектор 2 в конец вектора 1 | |
27 | - | print(/*название переменной 1*/); |
27 | + | |
28 | - | print(/*название переменной 2*/); |
28 | + | |
29 | - | del(/*название переменной 1*/); |
29 | + | |
30 | int main() { | |
31 | /* paste your code here */ | |
32 | print(ft); | |
33 | print(sc); | |
34 | del(ft); | |
35 | } |