将c风格的注释转换成cpp风格

首先要将文本分成四个状态:
1.普通状态(NULLSTATUS)
2.c状态(CSTATUS)
3.cpp状态(CPSTATUS)
4.EOF状态(EOFSTATUS)
四个状态之间的关系如下:
这里写图片描述
程序代码如下:
main.c

#include"convert.h"
int main()
{
    convert_main();
    //测试驱动开发
    return 0;
}

convert.h

#ifndef __COVERT_H__
#define __COVERT_H__
#include<stdio.h>
#include<stdlib.h>


#define INPUTFILE "input.c"  
#define OUTPUTFILE "output.c"
enum{ CSTATUS, CPSTATUS, NULLSTATUS, EOFSTATUS };

void convert_main();
#endif

convert.c


#include"convert.h"

int status = NULLSTATUS;

void do_null_status(FILE *ifp,FILE *ofp)
{
    int c=fgetc(ifp);
    switch(c)
    {
    case '/':
    {
        int s = fgetc(ifp);
        switch (s)
        {
        case '*':

            fputc('/', ofp);
            fputc('/', ofp);

            status = CSTATUS;
            break;
        case '/':
            //fputc('\n', ofp);
            fputc('/', ofp);
            fputc('/', ofp);
            status = CPSTATUS;
            break;
        case EOF:
            status = EOFSTATUS;
            break;
        default:
            fputc(c, ofp);
            ungetc(s, ifp);
            status = NULLSTATUS;
            break;
        }

    }
        break;
    case EOF:
        status = EOFSTATUS;
        break;
    default:
        fputc(c, ofp);
        status = NULLSTATUS;
        break;
    }
}
void do_cpp_status(FILE *ifp, FILE *ofp)
{
    int c = fgetc(ifp);
    switch (c)
    {
    case '\n':
        fputc(c, ofp);
        status = NULLSTATUS;
        break;
    case EOF:
        status = EOFSTATUS;
        break;
    default:
        fputc(c, ofp);
        status = CPSTATUS;
        break;
    }
}
void do_c_status(FILE *ifp, FILE *ofp)
{
    int c = fgetc(ifp);
    switch (c)
    {
    case '*':
    {
        int s = fgetc(ifp);
        switch (s)
        {
        case '/':
            fputc('\n', ofp);
            status = NULLSTATUS;
            break;
        default:
            fputc(c, ofp);
            ungetc(s, ifp);
            status = CSTATUS;
            break;
        }
    }
        break;
    case EOF:
        status = EOFSTATUS;
        break;
    case '\n':
        fputc(c, ofp);
        fputc('/', ofp);
        fputc('/', ofp);
        status = CSTATUS;
        break;
    default:
        fputc(c, ofp);
        status = CSTATUS;
        break;
    }


}

static void convert_work(FILE *ifp, FILE *ofp)
{
    while (status != EOFSTATUS)
    {
        switch (status)
        {
        case NULLSTATUS:
            do_null_status(ifp, ofp);
            break;
        case CPSTATUS:
            do_cpp_status(ifp, ofp);
            break;
        case CSTATUS:
            do_c_status(ifp, ofp);
            break;
        case EOFSTATUS:
            break;
        default:
            break;
        }
    }
}

void convert_main()
{
    FILE *ifp = fopen(INPUTFILE, "r");
    FILE *ofp = fopen(OUTPUTFILE, "w");
    if (ifp == NULL || ofp == NULL)
    {
        fprintf(stderr, "this is fopen err!");
        return;
    }

    convert_work(ifp, ofp);
    fclose(ifp);
    fclose(ofp);
}

测试用例 input.c的内容:

// 1.一般情况
int num = 0;
/* int i = 0; */
// 2.换⾏问题
/* int i = 0; */int j = 0;
/* int i = 0; */
int j = 0;
// 3.匹配问题
/*int i = 0;/*xxxxx*/
// 4.多行注释问题
/*
int i=0;
int j = 0;
int k = 0;
*/int k = 0;
// 5.连续注释问题
/*int a = 0;*//*int b = 0;*/
// 6.连续的**/问题
/***/
// 7.C++注释问题
// /*xxxxxxxxxxxx*/

程序运行之后,output.c的内容:

// 1.一般情况
int num = 0;
// int i = 0; 

// 2.换⾏问题
// int i = 0; 
int j = 0;
// int i = 0; 

int j = 0;
// 3.匹配问题
//int i = 0;/*xxxxx

// 4.多行注释问题
//
//int i=0;
//int j = 0;
//int k = 0;
//
int k = 0;
// 5.连续注释问题
//int a = 0;
//int b = 0;

// 6.连续的**/问题
//*

// 7.C++注释问题
// /*xxxxxxxxxxxx*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值