我必须创建一个读取数字的程序,然后生成10个子进程。每个孩子必须在实际数字中看到他的索引的出现(在创建它们的for中使用的索引的istance)并将其发送回父级,以便他可以看到哪个具有更大的数量出现次数。我会举例说明一下:
假设我输入了数字012234555
第一个孩子(0)有1次出现
第二个(1)有1.
第三个(2)有2.
等等。
所以父母必须说5是出现次数最多的数字。
我正在使用管道将孩子的出现发送给父母,但它实际上只适用于第一个孩子。我做错了什么? 这是代码:
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#define N 10
int main (void)
{
int i=0,max=0,j=0,tube[2],nbyte,w,occ,occv[10]={0},count=0;
pid_t pid,my_pid,child_pid;
char buffer[30],check;
printf("Insert the nunmber: ");
scanf("%s",buffer);
my_pid=getpid();
if (pipe(tube))
{
printf("\nError while creating the pipe!");
exit(EXIT_FAILURE);
}
for (i=0;i<N;i++){
if ((pid=fork())<0)
{
printf("\nError while forking!");
exit(EXIT_FAILURE);
}
else if (pid==0) //child
{
occ=0;
close(tube[0]);
check = (char)(((int)'0')+i);
for (j=0;j<strlen(buffer);j++)
if (check==buffer[j])
occ++;
printf("I'm the child %d (pid %d), my occurence is %d\n",i,getpid(),occ);
if (occ>0)
{
nbyte=write(tube[1],&occ,sizeof(int));
printf("I'm the child %d and i wrote %d bytes (the actual integer is %d)\n",getpid(),nbyte,occ);
}
exit(i);
}
else //parent
{
close(tube[1]);
nbyte=read(tube[0],&(occv[i]),sizeof(int));
printf("I'm the parent pid(%d) and i read %d bytes (the actual integer is %d)\n",getpid(),nbyte,occv[i]);
if (occv[i]>max)
max=i;
}
}
while(wait(&w)>0);
printf("I'm the parent (pid %d) and the number with max occurence is %d\n",getpid(),max);
exit(0);
}
答案 0 :(得分:1)
在第一次循环中,关闭父级中的tube [0]。因此,儿童在后续通过循环时无法使用它。实际上并不需要在此时关闭它。
你也没有特别利用分叉 - 在第一个孩子终止之前你不会分叉你的第二个孩子 - 但是我不确定这个练习的重点是什么,所以这可能不是一个问题。