-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_split.c
102 lines (92 loc) · 2.23 KB
/
ft_split.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_split.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: polmarti <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/28 10:41:44 by polmarti #+# #+# */
/* Updated: 2023/09/28 10:41:46 by polmarti ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
static int ft_cnt_str(const char *s, char c)
{
int cnt;
int newword;
newword = 1;
cnt = 0;
while (*s)
{
if (*s != c && newword == 1)
{
cnt++;
newword = 0;
}
else if (*s == c)
newword = 1;
s++;
}
return (cnt);
}
static void *ft_free(char **ptr, size_t len)
{
size_t i;
i = 0;
while (i < len)
{
free(ptr[i]);
i++;
}
free(ptr);
return (0);
}
char **ft_split(char const *s, char c)
{
char *p;
char **rtrn;
size_t cnt;
size_t len;
cnt = ft_cnt_str(s, c);
len = 0;
rtrn = malloc(sizeof(char *) * (cnt +1));
if (!rtrn)
return (0);
while (len < cnt)
{
while (*s == c && *s)
s++;
p = (char *)s;
while (*s != c && *s)
s++;
rtrn[len] = ft_substr(p, 0, s - p);
if (!rtrn[len])
return (ft_free(rtrn, len));
len++;
}
rtrn[len] = NULL;
return (rtrn);
}
/*int main()
{
const char *p = "\0aa\0bbb";
char **pp;
int i;
i = 0;
pp = ft_split(p, '\0');
while(pp[i])
{
printf("%s\n", pp[i]);
i++;
}
return (0);
}*/
//66por si la ocurrencia es en el primer caso y en la
// siguientes vueltas del bucle
//68almacenamos la primera posicion despues de la 'c' si
//la hay previamente
//69recorremos el ptr original hasta la siguiente 'c'
//71p = s[0] original , s - p = la posicion del indice de
//la siguiente 'c'
//menos el valor de 'p' por si hubiera una posible
//ocurrencia en primer lugar