Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

各位大侠,帮我看看有什么错误,万分谢谢!

Posted by wade at 2005-08-10 22:01:15 on Problem 1007
#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
#include<string.h>
#define r 100
#define l 51
void main()
{
    int a,b,i,j,k,h[r]={0},g[r]={0},m[r]={0},t;
    char d[r][l];

    scanf("%d %d",&a,&b);

    for(i=0;i<b;i++)
    {
        for(j=0;j<a+1;j++)
        {
            d[i][j]=getchar();
            //scanf("%c",&d[i][j]);

        }
        for(j=1;j<a+1;j++)
        {
            for(k=0;k<j;k++)
            {

                if(d[i][j]<d[i][k])
                {
                    h[i]++;
                    g[i]++;
                }

            }
        }
    }


    for(i=0;i<b-1;i++)
    {
        for(j=i+1;j<b;j++)
        {
            if(g[j]<g[i])
            {
                t=g[j];
                g[j]=g[i];
                g[i]=t;
            }
        }
        //printf(" %d ",g[i]);
    }
    for(i=0;i<b;i++)
    {

        for(j=0;j<b;j++)
        {
            if(h[j]==g[i]&&m[j]==0)
            {
                m[j]=1;
                for(k=0;k<a+1;k++)
                putchar(d[j][k]);

            }
        }
    }
    printf("\n");
}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator