gpt4 book ai didi

c - fork() with char array and qsort() resulting child 停止工作

转载 作者:太空宇宙 更新时间:2023-11-04 06:17:25 24 4
gpt4 key购买 nike

我在使用qsort() 函数时遇到了一些问题。这种情况是对我之前添加的帖子的扩展 reference .我需要对存储成员接收到的元素(即一套纸牌)的数组进行排序。例如:

使用以下示例运行 -

./a.out A4 B2 CK DA BJ A3 DT C4 A2 B3 D4 C3
Child : 1, pid 18211 : A4 BJ A2
Child : 2, pid 18212 : B2 A3 B3
Child : 3, pid 18213 : CK DT D4
Child : 4, pid 18214 : C4 DA C3
Father : 4 childs created

期望的输出

./a.out A4 B2 CK DA BJ A3 DT C4 A2 B3 D4 C3
Child : 1, pid 18211 : A4 A2 BJ
Child : 2, pid 18212 : A3 B3 B2
Child : 3, pid 18213 : CK DT D4
Child : 4, pid 18214 : C4 C3 DA
Father : 4 childs created

即把A4 BJ A2存入一个数组,将B2 A3 B3存入第2个数组,将CK DT D4存入第3个数组,将C4 DA C3存入第4个数组。并将成员元素降序排列,再做进一步的操作。

但是,当我尝试使用 qsort 时,出现以下问题:

没有子输出(即使是未排序的打印语句)

问题是什么? qsort 实现有什么问题吗?请帮助我。

到目前为止的代码:

    #include <sys/types.h>
#include <sys/wait.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>

void childFunction( char *argv[], int argc, int identify ){
int cmp( const void *a, const void *b ){
return *(char *)a - *(char *)b;
}
int childnum = identify + 1 ;
int i,j,r,z;
char *a[256];
char *temp[256];
printf("Child : %d, pid %d : ", childnum, getpid() );
for( i = childnum; i < argc; i += 4 )
{
for( j = 0; j < argc; j++ )
{
a[j] = argv[i];
printf("%s ", a[j]) ;
break;
}
}
qsort(a,sizeof(a),sizeof(a[0]),cmp);
printf( "\n" ) ;
for( j = 0; j < sizeof(a); j++ )
{
printf("%s ", a[j]) ;
break;
}
// do stuff
}


int main( int argc, char *argv[] ){
int childLimit = 4; // number of children wanted
int childrenPids[childLimit]; // array to store children's PIDs if needed
int currentPid, i;

for(i=0; i<childLimit; i++){
switch(currentPid = fork()){
case 0:
// in the child
childFunction(argv, argc, i);
// exit the child normally and prevent the child
// from iterating again
return 0;
case -1:
printf("Error when forking\n");
break;
default:
// in the father
childrenPids[i] = currentPid; // store current child pid
break;
}

}



// do stuff in the father

//wait for all child created to die
waitpid(-1, NULL, 0);
printf("Father : %d childs created\n", i);
}


[1]: https://stackoverflow.com/questions/42325032/c-print-and-store-command-line-argument-in-a-round-robin-manner/42325301?noredirect=1#comment72082753_42325301

最佳答案

是的,您调用 qsort 的方式有问题。

第二个参数是数组中成员的数量。 sizeof(a) 返回 a 的整个大小,在本例中为 2048 字节(256 个元素 * 指针为 8 字节)。您在这里真正想要的是跟踪您正在填充的 a 的多少个元素并改用该值。

哪种类型会导致另一个问题,即您填充 a 的方式没有多大意义,我看不出您是如何从中获得输出的。对于 i 的不同值,您正在用 argv[i] 重复填充数组的第一个 argc 元素。

我想你的意思是这样的:

for( i = childnum; i < argc; i += 4 )
{
a[j++]=a[i];
}

然后将 j 作为要传递给 qsort 的元素数。

关于c - fork() with char array and qsort() resulting child 停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42512230/

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