gpt4 book ai didi

找不到错误C

转载 作者:太空狗 更新时间:2023-10-29 15:26:27 25 4
gpt4 key购买 nike

我必须写两个线程。每个人都像这样打印 5 个从 1 到 100 的偶数/奇数(odd 在法语中是 impair,even 是 pair)。

even 2,4,6,8,10
odd 1,3,5,7,9
even 12,14,16,18,20
odd 13,15,17,19,21
etc...

我写了这段代码:

#include <stdio.h>
#include <semaphore.h>
#include <pthread.h>

#define maxi 100

pthread_mutex_t mutex;
sem_t p;
sem_t imp;
int tour = 0;

void *pair(void *arg);
void *impair(void *arg);

int main() {
pthread_t tidp, tidimp;

pthread_mutex_init(&mutex, NULL);
sem_init(&p, 0, 1);
sem_init(&imp, 0, 1);

pthread_create(&tidp, NULL, pair, (void *)2);
pthread_create(&tidimp, NULL, impair, (void *)1);

pthread_join(tidp, NULL);
pthread_join(tidp, NULL);

sem_destroy(&imp);
sem_destroy(&p);
pthread_mutex_destroy(&mutex);

return 0;
}

void *pair(void *arg) {
int i = (int)arg;
int j, l;

// sleep(5);

pthread_mutex_lock(&mutex);
if (!tour) {
tour = 1;
pthread_mutex_unlock(&mutex);
sem_wait(&imp);
} else {
pthread_mutex_unlock(&mutex);
}

for (l = 0; l < maxi; l += 10) {
sem_wait(&p);
printf(" Pair ");

pthread_mutex_lock(&mutex);
for (j = 0; j < 10; j += 2) {
printf(" %4d \t", j + i);
}

pthread_mutex_unlock(&mutex);

printf("\n");
sem_post(&imp);
i += 10;
}

pthread_exit(NULL);
}

void *impair(void *arg) {
int i = (int)arg;
int j, l;

pthread_mutex_lock(&mutex);
if (!tour) {
tour = 1;
pthread_mutex_unlock(&mutex);
sem_wait(&p);
} else {
pthread_mutex_unlock(&mutex);
}

for (l = 0; l < maxi; l += 10) {
sem_wait(&imp);
printf("Impair ");

pthread_mutex_lock(&mutex);
for (j = 0; j < 10; j += 2) {
printf(" %4d \t", j + i);
}
pthread_mutex_unlock(&mutex);

printf("\n");
sem_post(&p);
i += 10;
}

pthread_exit(NULL);
}

我不明白的是,当我运行代码时,有时它以 odd 开头,有时以 even 开头。更具体地说,当它以 odd 开头时,一切正常,我得到从 1 到 100 的所有数字,但当它以 even 开头时,有时我只能得到 91,有时93,有时是 97。

谁能告诉我哪里出了问题?下面的屏幕截图可能会有所帮助。

enter image description here enter image description here enter image description here

最佳答案

你不是在等待两个线程都退出:

pthread_join(tidp, NULL);
pthread_join(tidp, NULL);

其中一个应该是 tidimp

关于找不到错误C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27391578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com