1

我正在从代表数据包的文件(fp)fourplets 中读取,如果数据包的生成时间小于运行时间,那么我将其插入到我的列表中。每个时隙时间增加 20.0。但是我想检查文件中所有数据包的时间在 0 到 20 之间,然后在 20 到 40 之间等等。例如,如果一个数据包的生成时间为 13.9 并且时隙为 0-20,这意味着该数据包将是插入到列表中,但另一个生成时间为 24.5 的数据包不会插入到列表中。我写了下面的代码,但它不是那样工作的。

  double time=0.0;  
  while( fgets(buf,sizeof(buf),fp) != NULL ){
    fscanf(fp, "%d %d %d %lf",&rollnumber, &src, &dest, &gentime);
    printf("time: %.1f\n",time);
    while (gentime<time && insertedpackets<=10){ 
            insert(rollnumber,src,dest,gentime);
            insertedpackets++;
            display();
        }time=time+20.0;
4

0 回答 0