| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 513 人关注过本帖
标题:程序运行时出错 请各位指教
取消只看楼主 加入收藏
dark1998
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2009-10-5
结帖率:100%
收藏
已结贴  问题点数:16 回复次数:1 
程序运行时出错 请各位指教
编译的时候没有错误 运行的时候就出错了
#include "stdafx.h"
#include<iostream>
#include"compare.h"
#include"random.h"
const int M=20;
const int N=2;
const int START=10;
const int END=100;

using namespace std;

int main()
{
    int coordinate[M][N]={};
    int i,j,k,h,l,chance,turn,sum,g,Q;
    int flag[M]={};
    int mark[M]={};
    int lock[M]={};
    for( i=0;i<M;i++ )
        for( j=0 ;j<N;j++)
        {
            coordinate[M][N]=random(START,END);
        }//随机生成二维数组
    for(turn=0;turn<3;turn++)
    {
        sum=0;
        cout<<endl;
        for(h=0;h<M;h++)
       {
           chance=0;
           if(flag[h]==0&&lock[h]==0)
           {
               for(j=0;j<M;j++)
               {
                   k=0;Q=0;
                   for(i=0;i<N;i++)
                   {
                       if(flag[j]==0&&h!=j)
                       {
                           if(compare(coordinate[h][i],coordinate[j][i])<=1)
                              k++;
                           if(compare(coordinate[h][i],coordinate[j][i])==1)
                               Q++;
                       }
                       else
                           break;
                   }
                   if(k==N)
                       chance++;
                   if(Q==N)
                   {
                       for(i=0;i<N;i++)
                       {
                           coordinate[h][i]=0;
                       }
                       lock[h]=1;
                   }

               }
               if(chance==0)
               {
                   mark[sum]=h;
                   sum++;
                   for(l=0;l<N;l++)
                   {
                       cout<<coordinate[h][l]<<" ";
                   }
                   cout<<endl;
               }
           }
        }
        for(g=0;g<sum;g++)
        {
            flag[mark[g]]=1;
        }
    }
   
}
最近事多没回帖 所以可用分少了些 还请见谅
搜索更多相关主题的帖子: 指教 运行 
2010-05-29 11:12
dark1998
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2009-10-5
收藏
得分:0 
#include"compare.h"的代码:

int compare(int a,int b);

using namespace std;

int compare(int a,int b)
{
    int x;
    if(a>b)
        x=2;
    if(a==b)
        x=1;
    if(a<b)
        x=0;
    return(x);
}
#include"random.h"的代码:

#include<cmath>
using namespace std;

int random(int a ,int b )
{
    int c;
    c = a + ( b - a ) * rand() / ( RAND_MAX + 1000 );
    return c;
}
程序是要在随机产生的坐标(XY坐标)中选出非支配解,在X-Y坐标系中,A点(X1,Y1),B(X2,Y2),如果X1>=X2且Y1>=Y2 那么就称A点支配B点 所谓非支配解就是在一次选择中选出不受任何点支配的点的集合。我的描述不是很详细 对此很抱歉 不过还是请各位朋友帮帮忙
2010-05-29 19:18
快速回复:程序运行时出错 请各位指教
数据加载中...
 
   



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

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