-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathseparation.c
70 lines (63 loc) · 2.03 KB
/
separation.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* separation.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: doberyn <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/12/22 15:18:13 by doberyn #+# #+# */
/* Updated: 2019/12/22 15:18:15 by doberyn ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
/*
** ft_array_separation - Разбиваем получаемую
** строку на массив чисел.
** ༺༻
** Состояние: ✓
** Нормы: ✓
** ༺༻
*/
void ft_array_separation(int argc, char **argv, t_data *new)
{
int p;
int i;
int *buff;
char **mass;
int count_element;
i = 1;
while (i < argc)
{
p = -1;
count_element = ft_countword(argv[i]);
mass = ft_strsplit(argv[i], count_element);
if (!(buff = (int *)malloc(sizeof(int) * (count_element))))
exit(1);
while (count_element > ++p)
{
buff[p] = ft_atoi(mass[p]);
free(mass[p]);
}
free(mass);
ft_stacking(new, buff, count_element);
i++;
}
}
/*
** ft_stacking - В данной фунции мы переписываем
** данные из buff в new->а(массив int в структуре t_data)
** определенное кол-во раз(count).
** ༺༻
** Состояние: ✓
** Нормы: ✓
** ༺༻
*/
void ft_stacking(t_data *new, int *buff, int count)
{
int i;
i = -1;
while (count > ++i)
new->a[new->count_element + i] = buff[i];
new->count_element += count;
free(buff);
}