gpt4 book ai didi

c - linux回文字符串参数

转载 作者:太空宇宙 更新时间:2023-11-04 02:42:32 28 4
gpt4 key购买 nike

我必须编写一个程序来接收单词作为参数。对于每个参数,我都必须创建一个线程来验证单词是否为回文,在这种情况下它将递增一个全局变量总和。这是我做的

#include <stdio.h>
#include <string.h>
#include <pthread.h>
#define MAX 15

pthread_mutex_t mtx;
int sum=0;
void *Pal(void *arg) {
char *p=char arg;
// char p=*(int*)arg;
int len,j;
int flag=0;
printf("%s received. ", p);
len= strlen(p);
for (j=0; j<len; j++) {
pthread_mutex_lock(&mtx);
if(p[j] ==p[len-j-1])
flag +=1;
pthread_mutex_unlock(&mtx);
}
if (flag==len) {
printf("%s is palindrome.good job \n", p);
sum +=1;
}
else {
printf("%s is not palindrome.Fail \n", p);
}
}

int main( int argc, char* argv[]) {
int i;
pthread_mutex_init(&mtx, NULL);
pthread_t t[MAX];
for(i=1 ; i<argc; i++)
pthread_create(&t[i], NULL, Pal, argv[i]);
for(i=1 ; i<argc; i++)
pthread_join(t[i], NULL);
printf("The global sum is:%d \n", sum);
return 0;
}

问题在那里:char p=char arg。我不知道如何建立字符串和参数之间的关系。如果有人可以帮助我,我将不胜感激。

最佳答案

你不需要强制转换,因为 void * 在 c 中被转换为任何没有强制转换的指针类型,所以

char *p = arg;

会起作用。

我没有检查程序的其余部分,所以我不能说程序是否会按您预期的方式运行,但至少这解决了一个问题。

关于c - linux回文字符串参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30430158/

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