| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 640 人关注过本帖
标题:支配值数目问题,看看吧
只看楼主 加入收藏
吴军旗
Rank: 5Rank: 5
等 级:职业侠客
帖 子:286
专家分:308
注 册:2011-9-14
结帖率:100%
收藏
 问题点数:0 回复次数:2 
支配值数目问题,看看吧
程序代码:
#include< stdio.h >
#include< stdlib.h >
int
    main( void )
{
    int f[] = {1,3,5,7,9};
    int g[] = {2,3,4,7,8};
    int k;
    int t( int f[],int g[],int m,int n )
        m = sizeof(f[]);
        n = sizeof(g[]);
        k = t( f[],g[],m,n );
        printf( "%d",k);
        system( "pause" );
}

int
    t( int f[], int g[], int m,int n )
{
    int a, b, count;
    count = a = b = 0;
    while( a < m && b < n )
    {
        if( f[a] <= g[b] )
            a++;
        else
            b++, count += m - a;
        return count
    }
}

运行不了,
我改成下面的来是一样


























#include< stdio.h >
#include< stdlib.h >
int
    main( void )
{
    int f[] = {1,3,5,7,9};
    int g[] = {2,3,4,7,8};
    int k;
    int m = 5;
    int n = 5;
    int t( int f[],int g[],int m,int n )
        k = t( f[],g[],m,n );
        printf( "%d",k);
        system( "pause" );
}

int
    t( int f[], int g[], int m,int n )
{
    int a, b, count;
    count = a = b = 0;
    while( a < m && b < n )
    {
        if( f[a] <= g[b] )
            a++;
        else
            b++, count += m - a;
        return count
    }
}





搜索更多相关主题的帖子: color 
2011-10-10 22:55
laznrbfe
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
帖 子:482
专家分:1599
注 册:2011-5-22
收藏
得分:0 
好多错误。。。我改了一下,运行没有错误。但不知道是不是你想要的
程序代码:
#include< stdio.h >
#include< stdlib.h >
int main( void )
{
    int f[] = {1,3,5,7,9};
    int g[] = {2,3,4,7,8};
    int k;
    int m = 5;
    int n = 5;
    int t( int f[],int g[],int m,int n );
    k = t( f,g,m,n );
    printf( "%d",k);
    system( "pause" );
     return 1;
}

int t( int f[], int g[], int m,int n )
{
    int a, b, count;
    count = a = b = 0;
    while( a < m && b < n )
    {
        if( f[a] <= g[b] )
            a++;
        else
            b++, count += m - a;
        return count;
    }
     return count;
}
2011-10-10 23:41
吴军旗
Rank: 5Rank: 5
等 级:职业侠客
帖 子:286
专家分:308
注 册:2011-9-14
收藏
得分:0 
回复 2楼 laznrbfe
谢谢你,我自己做出来了,好麻烦啊

最惨的不是忘不了悲伤的回忆,而是那些悲伤的回忆却开始记不清。。。
2011-10-11 01:04
快速回复:支配值数目问题,看看吧
数据加载中...
 
   



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

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