gpt4 book ai didi

c - 遍历结构数组

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

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

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

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

肉类奶制品水果等...

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

在这一点上任何事情都会有所帮助。我对如何执行此操作感到困惑,如果有人可以帮助我,我将不胜感激。我只是不知道该怎么做,或者我遗漏了什么。

EDITED Well, I changed my strategy a bit I am almost done and have everything working, there is just one minor glitch that I cannnot find. It's probably something fairly easy that I'm overlooking. Here is my updated code. If the supply type from the file is already in the ptr, just update the numerical values, if not make a record and add it to ptr. In my file I have this:

肉沙朗 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牛奶 1.00 25 2.25 15

对于肉类类别,它的总计是正确的,但之后的任何内容都不是!我一直认为这与我检查 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);
}

最佳答案

您可以将供应类型作为第三个参数传递给您的 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 万美元,等等),但它具有优点是所有算术都是精确的。如果您需要存储更大的值,您需要查看一些任意精度的库。

关于c - 遍历结构数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14654083/

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