我正在尝试使用C多线程来找出文本文件中每个字母的频率。赋值是:1(编写一个函数,读取文本中的每一个句子,以"."2(编写一个在二维数组中加载句子的函数 3(编写一个为每个句子的每个字母生成一个pthread的函数(pthread函数在该字母的计数器上加1(。 编辑:我发现瓦尔格林德的问题出在sentence
功能上,我不明白为什么。
代码如下:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/types.h>
char alphabet[26] = "abcdefghijklmnopqrstuvwxyz";
int count[26];
char* sentence(char * s){
char* p;
char* q;
char* arr;
int i;
p = s;
q = malloc(100);
arr = q;
for (i=0; *p != '.'; i++){
*q = *p;
q++;
p++;
}
*q = ' ';
return arr;
}
char** load_sentence(char* p, char** q, int i){
q[i] = malloc(strlen(p)+1);
strcpy(q[i], p);
return q;
}
void* count_letter(void * s){
char* p = (char*) s;
int i;
for (i=0; i<26; i++){
if (*p == alphabet[i]){
count[i]++;
}
}
}
void frequency(char* str){
char* s = str;
int i, j, l;
l = strlen(str);
pthread_t tid[l];
for (i=0; i<l; i++){
pthread_create(&tid[i], NULL, count_letter, (void*) s);
s++;
}
for (j=0; j<l; j++){
pthread_join(tid[j], NULL);
}
}
int main(int argc, char* argv[]){
int fd;
char buff[100];
fd = open(argv[1], O_RDONLY);
char ** text = malloc(10*sizeof(char*));
read(fd, buff, sizeof(buff));
char* start = buff;
int i = 0; //number of phrases!
char* p = NULL;
while (*(p = sentence(start)) != ' '){
text = load_sentence(p, text, i);
start += strlen(p)+1;
i++;
}
int j, k;
for (k=0; k<i; k++){
frequency(text[k]);
}
for (j=0; j<26; j++){
printf("%c : %d timesn", alphabet[j], count[j]);
}
}
在这样的情况下看起来是这样的:hope it's a good reading. bye.
输出正确:
a : 2 times
b : 1 times
c : 0 times
d : 2 times
e : 3 times
f : 0 times
g : 3 times
h : 1 times
i : 2 times
j : 0 times
k : 0 times
l : 0 times
m : 0 times
n : 1 times
o : 3 times
p : 1 times
q : 0 times
r : 1 times
s : 1 times
t : 1 times
u : 0 times
v : 0 times
w : 0 times
x : 0 times
y : 1 times
z : 0 times
对于其他人,"内存错误",以free() : invalid next size (normal)
开头。该错误有许多行内存映射,并以流产结束。
我对 C 很陌生,很抱歉我缺乏经验。
在这种情况下,是否有必要引入mutex
?
根据参考资料,您之前带有mutex
的版本具有未定义的行为,因为您多次初始化互斥锁:
尝试初始化已初始化的互斥锁会导致 未定义的行为。
您同时访问count
,因此您必须使用互斥锁来制作线程安全代码。你在count_letter
中调用了pthread_mutex_init
,这是不正确的,这个函数是你的线程的主体(多次初始化互斥锁而不破坏它会导致 UB(,你应该只调用pthread_mutex_init
一次,例如作为 main 函数的第一行:
int main() {
pthread_mutex_init(&mtx,NULL);
返回前添加
pthread_mutex_destroy(&mtx);
count_letter函数中的关键部分是线
count[i]++;
您应该按如下方式修改它
pthread_mutex_lock(&mtx);
count[i]++;
pthread_mutex_unlock(&mtx);
现在,回到sentence
实现,您需要在与.
进行比较之前检查*p
是否不指向空终止符:
for (i=0; *p && *p != '.'; i++){
^^ added
如果不测试它,