我有一个非常具体的问题要解决。我有一组包含产品信息的结构。每个结构都有以下信息。
供应类型 产品名称 批发价格 批发零售价格 零售产品数量
我的结构数组是完整的,这很好。现在,假设有几种供应类型,例如:
肉类 乳制品 水果等...
我将如何遍历结构数组并根据供应类型打印出值信息。我需要一个通用的解决方案。因为当然,可能有很多产品类型。
在这一点上,任何事情都会有所帮助。我对如何做到这一点感到困惑,如果有人能帮助我,我将不胜感激。我只是没有看到如何做到这一点,或者我错过了一些东西。
编辑 好了,我稍微改变了我的策略,我几乎完成并且一切正常,只有一个小故障我找不到。这可能是我忽略的相当容易的事情。这是我更新的代码。如果文件中的供应类型已经在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);
}