Analysis:Greedy Gift Givers

The hardest part about this problem is dealing with the strings representing people's names.

We keep an array of Person structures that contain their name and how much money they give/get.

The heart of the program is the lookup() function that, given a person's name, returns their Person structure. We add new people with addperson().

Note that we assume names are reasonably short.

#include  < stdio.h >
#include 
< string .h >
#include 
< assert.h >

#define  MAXPEOPLE 10
#define  NAMELEN    32

typedef 
struct  Person Person;
struct  Person  {
    
char name[NAMELEN];
    
int total;
}
;

Person people[MAXPEOPLE];
int  npeople;

void
addperson(
char   * name)
{
    assert(npeople 
< MAXPEOPLE);
    strcpy(people[npeople].name, name);
    npeople
++;
}


Person
*
lookup(
char   * name)
{
    
int i;

    
/* look for name in people table */
    
for(i=0; i<npeople; i++)
    
if(strcmp(name, people[i].name) == 0)
        
return &people[i];

    assert(
0);    /* should have found name */
}


int
main(
void )
{
    
char name[NAMELEN];
    FILE 
*fin, *fout;
    
int i, j, np, amt, ng;
    Person 
*giver, *receiver;

    fin 
= fopen("gift1.in""r");
    fout 
= fopen("gift1.out""w");

    fscanf(fin, 
"%d"&np);
    assert(np 
<= MAXPEOPLE);

    
for(i=0; i<np; i++{
    fscanf(fin, 
"%s", name);
    addperson(name);
    }


    
/* process gift lines */
    
for(i=0; i<np; i++{
    fscanf(fin, 
"%s %d %d", name, &amt, &ng);
    giver 
= lookup(name);

    
for(j=0; j<ng; j++{
        fscanf(fin, 
"%s", name);
        receiver 
= lookup(name);
        giver
->total -= amt/ng;
        receiver
->total += amt/ng;
    }

    }


    
/* print gift totals */
    
for(i=0; i<np; i++)
    printf(
"%s %d ", people[i].name, people[i].total);
    exit (
0);
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值