-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_split.c
122 lines (107 loc) · 2.86 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_split.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: evdos-sa <evdos-sa@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/20 15:42:09 by evdos-sa #+# #+# */
/* Updated: 2022/11/22 20:27:26 by evdos-sa ### ########.fr */
/* */
/* ************************************************************************** */
/*
Parâmetros
s: A string a ser dividida.
c: O caractere delimitador.
Valor de retorno:
A matriz de novas strings resultantes da divisão.
NULL se a alocação falhar.
Funções externas:
malloc, free.
Descrição:
Aloca (com malloc(3)) e retorna um array de strings obtidas pela divisão
de 's' usando o método caractere 'c' como um delimitador.
A matriz deve terminar com um ponteiro NULL.
*/
/* 1st: Saber quantas paravras existem na string original (s1) do split. */
/* 2nd: Saber quantas letras existem em cada palavra encontrada. */
/* 3th: Saber quais sao as palavras separadas. */
#include "libft.h"
/* 1st: Saber quantas paravras existem na string original (s1) do split. */
static int count_strs(char const *cstr, char ch)
{
int count;
int i;
count = 0;
i = 0;
while (cstr[i] != '\0')
{
while (cstr[i] == ch)
i++;
if (cstr[i] != '\0')
{
count++;
while (cstr[i] != ch && cstr[i] != '\0')
i++;
}
}
return (count);
}
/* 2nd: Saber quantas letras existem em cada palavra encontrada. */
static int count_chr(char const *schr, char c, int i)
{
int num_chr;
num_chr = 0;
while (schr[i] && schr[i] != c)
{
num_chr++;
i++;
}
return (num_chr);
}
/* 3th: Saber quais sao as palavras separadas. */
char **ft_split(char const *s, char c)
{
int i;
int j;
char **str;
if (!s)
return (NULL);
i = 0;
j = -1;
str = (char **)malloc((count_strs(s, c) + 1) * sizeof(char *));
if (!str)
return (NULL);
while (++j < count_strs(s, c))
{
while (s[i] == c)
i++;
str[j] = ft_substr(s, i, count_chr(s, c, i));
if (!str)
return (NULL);
i += count_chr(s, c, i);
}
str[j] = 0;
return (str);
}
/*
int main(void)
{
int i = 0;
char **tab;
char delim = '.';
tab = ft_split("Ev.er.ton", delim);
while (i < 4)
{
printf("string %d : %s\n", i, tab[i]);
i++;
}
return (0);
}
int num = count_strs(string, ch);
printf("%d\n", num);
num_chr = count_chr(string);
printf("%d\n", num_chr);
return (0);
}
*/