华清远见作业第十三天

1.使用多文件编辑,
定义商品信息:商品名称,商品单价,商品购买个数,商品描述,循环输入购买的商品,按单价排序,输出商品信息,计算最贵的商品以及一共花了多少钱?
在create函数,请实现在堆区申请内存5个连续的内存在input函数,请实现循环输入购买的商品
在bubble函数,请实现按单价排序
在Max函数,计算最贵的商品名称在Money函数,计算共花了多少钱在output函数,请实现输出
在free_space函数。实现释放堆区内存
代码:

head.h


#ifndef __HEAD_H_
#define __HEAD_H_

#include
#include
#include
#include 
#include 
#include 
#define X 5
struct store
{
	char name[20];
	int price;
	int num;
	char message[100];
};
//申请内存
struct store *create();
//循环输入
void input(struct store *p);
//循环输出
void output(struct store *p);
//单价排序
void bubble(struct store *p);
//找最贵的的商品
void Max(struct store *p);
//计算花了多少钱
void Money(struct store *p);
//释放内存
struct store *free_space(struct store *p);

#endif

test.c

#include "head.h"

//申请内存
struct store *create()
{
	struct store *p=(struct store *)malloc(sizeof(struct store)*X);
	if(NULL==p)
	{
		return NULL;
	}
	return p;
}
//循环输出
void output(struct store *p)
{
	for(int i=0;iname,(p+i)->price,(p+i)->num,(p+i)->message);

	}
}
//循环输入
void input(struct store *p)
{
	for(int i=0;iname);
		printf("请输入商品单价:");
		scanf("%d",&(p+i)->price);
		printf("请输入商品购买个数:");
		scanf("%d",&(p+i)->num);
		printf("请输入商品描述:");
		scanf("%s",(p+i)->message);

	}
}
//释放内存
struct store *free_space(struct store *p)
{
	if(NULL==p)
	{
		return NULL;
	}
	free(p);
	p=NULL;
	return p;
}
//单价排序
 void bubble(struct store *p)
{
	for(int i=1;iprice) < ((p+j+1)->price) )
			{
				struct store t=*(p+j+1);
				*(p+j+1)=*(p+j);
				*(p+j)=t;
			}	
		}
	}
	output(p);
	

}
//找最贵的的商品
void Max(struct store *p)
{
	int max=p->price;
	int num=0;
	for(int i=0;iprice) )
		{
			max=((p+i)->price);
			num=i;
		}
	}
	
	printf("最贵的商品是%s\n",((p+num)->name) );
}
//计算花了多少钱
void Money(struct store *p)
{
	int sum=0;
	for(int i=0;iprice)*((p+i)->num);
	}
	printf("总共花费=%d\n",sum);
}

main.c 

#include "head.h"

int main(int argc, const char *argv[])
{
	//申请空间
	struct store *p=create();
	
	//循环输入
	input(p);
	//循环输出
	printf("\t循环输出\n");
	output(p);
	printf("\t找最贵的商品\n");
	Max(p);
	printf("\t排序\n");
	//商品降序排列
	bubble(p);
	printf("\t计算总共花费\n");
	Money(p);
	//释放内存
	p=free_space(p);
	
	return 0;
}

运行效果:

 华清远见作业第十三天_第1张图片

 思维导图:

 

你可能感兴趣的:(华清远见作业,c语言,数据结构)