0

我有一个非常具体的问题要解决。我有一组包含产品信息的结构。每个结构都有以下信息。

供应类型 产品名称 批发价格 批发零售价格 零售产品数量

我的结构数组是完整的,这很好。现在,假设有几种供应类型,例如:

肉类 乳制品 水果等...

我将如何遍历结构数组并根据供应类型打印出值信息。我需要一个通用的解决方案。因为当然,可能有很多产品类型。

在这一点上,任何事情都会有所帮助。我对如何做到这一点感到困惑,如果有人能帮助我,我将不胜感激。我只是没有看到如何做到这一点,或者我错过了一些东西。

编辑 好了,我稍微改变了我的策略,我几乎完成并且一切正常,只有一个小故障我找不到。这可能是我忽略的相当容易的事情。这是我更新的代码。如果文件中的供应类型已经在ptr中,只需更新数值,如果没有记录并将其添加到ptr。在我的文件中,我有这个:

肉沙朗 3.55 15 7.30 8 肉鸡肉 2.51 9 5.44 5 肉培根 3.30 23 4.38 10 水果苹果 .50 40 1.11 20 水果香蕉 .39 25 .85 16 牛奶 1.00 25 2.25 15 牛奶 1150 25 2.25

它对肉类类别的总计正确,但之后的任何内容都没有!我一直认为这与我检查 supType 是否已经存在的循环有关。

这是我的完整代码。

void calculateDisplay(pointerDynam, sizeA);
void cleanUp();

typedef struct
{
    char supType[15];
    char prodName[15];
    double wholePrice;
    int quantWhole;
    double retPrice;
    int retProdQuantity;
} PRODUCT;

FILE *fr;
int main()
{
    char supplyName[15];
    char productName[15];
    double wholeP = 0;
    int  quantityWhole = 0;
    double retailPrice = 0;
    int retailProductQuant = 0;

    //keep track of supply types.

    PRODUCT *ptr;

    ptr = malloc(sizeof(PRODUCT));

    PRODUCT *temp;

    //int num =0;
    int i = 1;
    int num = 0;
    int a;
    int countTrack = 0;
    bool alreadySupply = true;
    int needsChanged = 0;

    fr = fopen("ttt.txt", "r");

    while(fscanf(fr, "%s %s %lf %d %lf %d", supplyName, productName, &wholeP, &quantityWhole, &retailPrice, &retailProductQuant)==6)
    {
        if(num != 0)
        {
            for(a=0; a < num; a++)
            {
                if(strcmp(ptr[a].supType, supplyName) == 0)
                {
                    needsChanged = a;
                }
                else
                {
                    alreadySupply = false;
                }
            }
        }

        if(num == 0 || alreadySupply == false)
        {
            PRODUCT record;
            strcpy(record.supType, supplyName);
            strcpy(record.prodName, productName);
            record.wholePrice = wholeP;
            record.quantWhole = quantityWhole;
            record.retPrice = retailPrice;
            record.retProdQuantity = retailProductQuant;

            ptr[num] = record;
            countTrack++;
            num++;
            i++;
            temp = realloc(ptr, i*sizeof(PRODUCT));
            ptr = temp;
        }
        else
        {
            ptr[needsChanged].quantWhole += quantityWhole;
            ptr[needsChanged].retPrice += retailPrice;
            ptr[needsChanged].retProdQuantity += retailProductQuant;
            ptr[needsChanged].wholePrice += wholeP;
        }
    }

    calculateDisplay(ptr, num);
    cleanUp();

    return 0;
}



void calculateDisplay(PRODUCT *pointerDynam, int sizeA)
{
    int j;
    double totownerCost = 0;
    double totcustCost = 0;
    double totprofit = 0;

    double supownerCost = 0;
    double supcustCost = 0;
    double suprofit = 0;

    for(j=0; j<sizeA; j++)
    {
        supownerCost = pointerDynam[j].wholePrice;
        supcustCost = pointerDynam[j].retPrice;
        suprofit = pointerDynam[j].retPrice - pointerDynam[j].wholePrice;

        printf("Supply Type: %s\n Wholesale Price: %.2f\n Retail Price: %.2f\n Profit: %.2f\n\n\n",
                 pointerDynam[j].supType, supownerCost, supcustCost, suprofit);
        totownerCost += pointerDynam[j].wholePrice;
        totcustCost += pointerDynam[j].retPrice;
        totprofit += pointerDynam[j].retPrice - pointerDynam[j].wholePrice;
    }

    printf("Wholesale Cost is: %.2f\n Retail is: %.2f\n Profit made was: %.2f\n\n", totownerCost, totcustCost, totprofit);
}

void cleanUp()
{
    fclose(fr);
}
4

3 回答 3

2

创建一个接受产品类型的函数,循环遍历数组,并且仅在当前项目产品类型与传递给它的匹配时打印。

  void printProductInfo(char* productType, PRODUCT* products)
  {
        for (int i = 0; i < productsLength; i++)
        {
              if (strcmp(productType, products[i]->supType)
                  // call print method
        }
  }
于 2013-02-01T20:03:22.473 回答
2

您可以将供应类型作为第三个参数传递给您的calculateDisplay函数:

 void calculateDisplay(PRODUCT *pointerDynam, int sizeA, const char *supplyType)
 {
    ...
    double typeCost = 0;
    double typeCust = 0;
    double typeProfit = 0;
    ...
    if(strcmp(pointerDynam[j].supType, supplyType)==0)
        {
            typeCost += pointerDynam[j].wholePrice;
            typeCust +=  pointerDynam[j].retPrice;
            typeProfit += pointerDynam[j].retPrice - pointerDynam[j].wholePrice;
        }
        ...

   printf("%s wholesale: %.2f\n %s retail %.2f\n %s profit: %.2f\n\n\n", 
      supplyType, typeCost, supplyType, meatCust, supplyType, typeProfit);

显然,如果您想一次分解多种类型,则必须重新考虑这一点,但对于单个类型,它应该工作得很好。

注意:虽然对于家庭作业来说这没什么大不了的,但您真的不想在真实的生产软件中使用浮点类型进行货币计算;舍入误差最终会累加。您将需要使用整数类型,并且只针对您需要跟踪的最小单位进行缩放(例如,存储 125 美分而不是 1.25 美元,或 1259 十分之一美分而不是 125.9 美分等)。这确实限制了您可以表示的值的范围(对于带符号的 32 位整数类型,如果以美分存储,大约为 +/- 2140 万美元,如果以十分之一美分存储,则为 214 万美元等),但它具有优点是所有算术都是精确的。如果您需要存储更大的值,则需要查看一些任意精度的库。

于 2013-02-01T21:08:24.120 回答
1

如果供应类型的数量是有限的,您可以执行以下操作。假设您有三种供应类型。

const int NUM_SUPPLY_TYPES = 3;

定义一个包含供应类型信息的结构

struct SupplyTypeInfo
{
    double ownerCost;
    double custCost;
    double profitMargin;
};

现在您可以定义从整数到信息和字符串表示的映射:

SupplyTypeInfo supplyTypeInfo[NUM_SUPPLY_TYPES];
char *supplyTypeName[] = { "Meat", "Fruit", "Dairy" }

然后在你的循环中你可以做

for (int stNum = 0; stNum < NUM_SUPPLY_TYPES; ++stNum)
{
    if(strcmp(pointerDynam[j].supType, supplyTypeName[stNum])==0)
    {
        supplyTypeInfo[stNum].ownerCost += pointerDynam[j].wholePrice;
        supplyTypeInfo[stNum].custCost +=  pointerDynam[j].retPrice;
        supplyTypeInfo[stNum].profitMargin += pointerDynam[j].retPrice - pointerDynam[j].wholePrice;
    }
}

如果事先不知道供应类型的数量,则需要像哈希表这样的动态数据结构。

于 2013-02-01T20:17:47.953 回答