我是靠谱客的博主 难过柜子,最近开发中收集的这篇文章主要介绍C语言实例010,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

大家好,我是一童

#include <stdio.h>
#define N 20
#define DELTA 2
int bestlen;
int bestsele[N];
int sele[N];
int n;
int orderlen[N];
int total;
void try1();
void main()
{
	int i;
	printf("n Please enter total length of the steel:n");/* 输入钢材总长 */
	scanf("%d",&total);
	printf("n Please enter number of order:n");  /* 输入定单数 */
	scanf("%d",&n);
	printf("n Please enter the orders:n"); /* 输入各定单 */
	for(i=0;i<n;i++)
		scanf("%d",&orderlen[i]);
	bestlen=0;	/*最佳解用料的初值 */
	for(i=0;i<n;i++)
		sele[i]=bestsele[i]=0;	/*置当前选择和最佳选择初值 */
	try1();	/* 调用函数求解 */
	for(i=0;i<n;i++) /* 输出结果 */
		if(bestsele[i])
			printf("order %d length = %dn",i+1,orderlen[i]);
	printf("n Press any key to quit...");
}
void try1()
{
	int i,len;
	for(len=i=0;i<n;i++)	/* 求当前选中的用料量 */
		if(sele[i])
			len+=orderlen[i]+DELTA;
	if(len-DELTA<=total)	/* 注意最后一段可能不需要切割 */
	{
		if(bestlen < len)
		{
			/* 找到一个更好的解 */
			bestlen = len;
			for(i=0;i<n;i++)
				bestsele[i]=sele[i];
		}
		for(i=0;i<n;i++) /* 对所有未选定单逐一作选中尝试循环 */
			if(!sele[i])
			{
				sele[i]=1;	/* 做选中尝试*/
				try1();
				sele[i]=0;
			}
	}
}

最后

以上就是难过柜子为你收集整理的C语言实例010的全部内容,希望文章能够帮你解决C语言实例010所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部