poj 3981 字符串替换

原题:http://poj.org/problem?id=3981

水题,具体实现如下:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define N 1000 + 2
typedef char State[15];
typedef struct node
{
    State word;
    struct node *pNext;
}Node;
char buf[N];
Node *AddNewNode(char* word)
{
    Node *NewNode = (Node *)malloc(sizeof(Node));
    strcpy(NewNode->word,word);
    NewNode->pNext=NULL;
    return NewNode;
}
void CreatelinkList(Node **pHead,char *word)
{
    if(*pHead==NULL)
        *pHead=AddNewNode(word);
    else
    {
        Node *p=*pHead;
        while(p->pNext!=NULL) p=p->pNext;
        p->pNext=AddNewNode(word);
    }
}
void PrintList(Node *pHead)
{
    Node *p=pHead;
    printf("%s",p->word);
    p=p->pNext;
    while(p!=NULL)
    {
        printf(" %s",p->word);
        p=p->pNext;
    }
    printf("\n");
}
void rec(Node **pHead)
{
    buf[strlen(buf)]=' ';
    buf[strlen(buf)]='\0';
    char *p=buf,*p1=buf;
    State temp;
    while(*p!='\0')
    {
        int i=0,n=0;
        p1=strchr(p,' ');
        if(p1!=NULL)
        {
            n = p1 - p;
            while(i<n) temp[i++]=*p++;
            temp[i]='\0';
            if(0 == strcmp(temp,"you"))
                CreatelinkList(pHead,"we");
            else
                CreatelinkList(pHead,temp);
            p=++p1;
        }
        else
            break;
    }
}
int main()
{
    Node *Head;
    while(gets(buf))
    {
        Head=NULL;
        rec(&Head);
        PrintList(Head);
        memset(buf,0,sizeof(buf));
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值