| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 287 人关注过本帖
标题:新手求帮忙啊,程序运行出错,求高手帮忙,谢谢!
取消只看楼主 加入收藏
Lyajxsd
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-10-13
结帖率:0
收藏
已结贴  问题点数:5 回复次数:0 
新手求帮忙啊,程序运行出错,求高手帮忙,谢谢!
#include<stdio.h>
#define MAXSIZE 50
#define MAXS 25
int w[MAXSIZE];
knapsack(int s,int m)
{
    typedef struct{
        int s;
        int m;
    }stackelem;
    stackelem stack[MAXS];
    int i,t,top,nofail;
    t=0;
    top=0;
    nofail=1;
    while((s!=t)  &&  nofail)
    {
        if((s>=t+w[1]) && (m>0))
        {
            stack[top].s=w[m];
            stack[top].m=m;
            top++;
            t=t+w[m];
            m--;
        }
        else
        {
            if(m==0)
            {
                top--;
                t=t-stack[top].s;
            }
            if(top<1)  nofail=0;
            else
            {
                top--;
                m=stack[top].m-1;
                t=t-stack[top].s;
            }
        }
    }
    if(s==t)
       for(i=0;i<top;i++)
           printf("\n%d\n",stack[i].s);
    else printf("three is no any selection!");
}
int main()
{
    int s,m,i;
    int w[MAXSIZE];
    printf("Please input an array w:\n");
    scanf("%d",w);
    printf("Please input a data s:\n");
    scanf("%d",&s);
    i=knapsack(s,m);
    return i;
}
搜索更多相关主题的帖子: top include 
2012-10-31 18:59
快速回复:新手求帮忙啊,程序运行出错,求高手帮忙,谢谢!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.036197 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved