字符串笔试题

一、题目描述(60分):
通过键盘输入一串小写字母(a~z)组成的字符串。请编写一个字符串过滤程序,若字符串中出现多个相同的字符,将非首次出现的字符过滤掉。
比如字符串“abacacde”过滤结果为“abcde”。

要求实现函数:void stringFilter(const char *pInputStr, long lInputLen, char *pOutputStr);

【输入】 pInputStr:  输入字符串
            lInputLen:  输入字符串长度         
【输出】 pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;
 

【注意】只需要完成该函数功能算法,中间不需要有任何IO的输入输出

示例 
输入:“deefd”        输出:“def”
输入:“afafafaf”     输出:“af”
输入:“pppppppp”     输出:“p”

main函数已经隐藏,这里保留给用户的测试入口,在这里测试你的实现函数,可以调用printf打印输出
当前你可以使用其他方法测试,只要保证最终程序能正确执行即可,该函数实现可以任意修改,但是不要改变函数原型。一定要保证编译运行不受影响。
 

二、题目描述(40分):
通过键盘输入一串小写字母(a~z)组成的字符串。请编写一个字符串压缩程序,将字符串中连续出席的重复字母进行压缩,并输出压缩后的字符串。
压缩规则:
1、仅压缩连续重复出现的字符。比如字符串"abcbc"由于无连续重复字符,压缩后的字符串还是"abcbc"。
2、压缩字段的格式为"字符重复的次数+字符"。例如:字符串"xxxyyyyyyz"压缩后就成为"3x6yz"。

要求实现函数: 
void stringZip(const char *pInputStr, long lInputLen, char *pOutputStr);

【输入】 pInputStr:  输入字符串
            lInputLen:  输入字符串长度
【输出】 pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;

【注意】只需要完成该函数功能算法,中间不需要有任何IO的输入输出

示例 
输入:“cccddecc”   输出:“3c2de2c”
输入:“adef”     输出:“adef”
输入:“pppppppp” 输出:“8p”

三、题目描述(50分): 
通过键盘输入100以内正整数的加、减运算式,请编写一个程序输出运算结果字符串。
输入字符串的格式为:“操作数1 运算符 操作数2”,“操作数”与“运算符”之间以一个空格隔开。

补充说明:
1、操作数为正整数,不需要考虑计算结果溢出的情况。
2、若输入算式格式错误,输出结果为“0”。

要求实现函数: 
void arithmetic(const char *pInputStr, long lInputLen, char *pOutputStr);

【输入】 pInputStr:  输入字符串
            lInputLen:  输入字符串长度         
【输出】 pOutputStr: 输出字符串,空间已经开辟好,与输入字符串等长;
 

【注意】只需要完成该函数功能算法,中间不需要有任何IO的输入输出

示例 
输入:“4 + 7”  输出:“11”
输入:“4 - 7”  输出:“-3”

输入:“9 ++ 7”  输出:“0” 注:格式错误

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

void stringFilter(const char *pInputStr, long lInputLen, char *pOutputStr)
{
    // to do: check valid
    if (pInputStr == NULL || pOutputStr == NULL || lInputLen == 0)
    {
        return;
    }
    
    memset(pOutputStr, 0, lInputLen);// init 
    
    int i = 0, j = 0;
    char* pbegin = pOutputStr;
    int valid = 0; // 表示唯一性
    
    for (i = 0; i < lInputLen; i++)
    {
        valid = 0;
        for (j = 0; j < lInputLen; j++)
        {
            if (pOutputStr[j] != pInputStr[i])
            {
                valid = 1; // not break, 下次可能还有相等的
            }
            else
            {
                valid = 0; // 一旦相等,即可退出循环,后面的不用再比较
                break;
            }
        }
        if (1 == valid)
        {
            *pbegin++ = pInputStr[i];
        }
    }
}

void stringZip(const char *pInputStr, long lInputLen, char *pOutputStr)
{
    // to do: check valid
    if (pInputStr == NULL || pOutputStr == NULL || lInputLen == 0)
    {
        return;
    }
    
    memset(pOutputStr, 0, lInputLen);// init 
    
    int count = 0;
    int i = 0;
    char* pbegin = pOutputStr;
    char pre = 1;
    
    for (i = 0; i < lInputLen; i++)
    {
        if (pre != pInputStr[i])
        {
            if (count > 1)
            {
                char tmp[16] = {0};
                sprintf(tmp, "%d", count);
                strcat(pOutputStr, tmp);
                pbegin += strlen(tmp);
                *pbegin ++ = pre;
            }
            pre = pInputStr[i];
            count = 1;
            *pbegin ++ = pre;
        }
        else
        {  
            count++;
            if (2 == count)
            {
                pbegin --;
                *pbegin = '\0';
            }       
        }
    }
    
}

void arithmetic(const char *pInputStr, long lInputLen, char *pOutputStr)
{
    // to do: check valid
    if (pInputStr == NULL || pOutputStr == NULL || lInputLen == 0)
    {
        return;
    }
    
    memset(pOutputStr, 0, lInputLen);// init 
    
    char opt[2][128] = {0};
    char act[12] = {0};
    char* pbegin = pOutputStr;
    const char* pinput = pInputStr;
    const char* pend = pInputStr + strlen(pInputStr);
    int bresult = 0;
    // parse num
    char* find = strstr(pinput, " ");
    if (NULL != find)
    {
        // first num
        assert(sizeof(opt[0]) > find - pinput);
        memcpy(opt[0], pinput, find - pinput);
        pinput = find;
        pinput += strlen(" ");
        find = strstr(pinput, " ");
        if (NULL != find)
        {
            // act
            assert(sizeof(act) > find - pinput);
            memcpy(act, pinput, find - pinput);
            pinput = find;
            pinput += strlen(" ");
            
            // second num
            assert(sizeof(opt[1]) > pend - pinput);
            memcpy(opt[1], pinput, pend - pinput);
            bresult = 1;
        }
    }

    // check valid
    if (!bresult)
    {
        *pbegin = '0';
        return ;
    }
    
    int i = 0;
    for (i = 0; i < strlen(opt[0]); i++)
    {
        if (!isdigit(opt[0][i]))
        {
            *pbegin = '0';
            printf("%c\n", opt[0][i]);
            return ;
        }
    }
    for (i = 0; i < strlen(opt[1]); i++)
    {
        if (!isdigit(opt[1][i]))
        {
            *pbegin = '0';
            printf("%c\n", opt[1][i]);
            return ;
        }
    }
    if (strcmp(act, "-") && strcmp(act, "+"))
    {
        *pbegin = '0';
        printf("%s\n", act);
        return ;
    }
    // calc
    int num[2] = {0};
    num[0] = atoi(opt[0]);
    num[1] = atoi(opt[1]);
    char tmp[16] = {0};
    if (!strcmp(act, "-"))
    {
        int nresult = num[0] - num[1];
        sprintf(tmp, "%d", nresult);
        strcpy(pbegin, tmp);
    }
    else if (!strcmp(act, "+"))
    {
        int nresult = num[0] + num[1];
        sprintf(tmp, "%d", nresult);
        strcpy(pbegin, tmp);
    }
    else
    {
        *pbegin = '0';
        return ;
    }
    
}

int main(int argc, char** argv)
{
    char str[] = "ppppfsdfsdfdsfdddddddddddddd";
    char* tmp = (char*)malloc(sizeof(str));
    memset(tmp, 0, sizeof(str));
    
    stringFilter(str, sizeof(str), tmp);
    printf("%s\n", tmp);
    
    stringZip(str, sizeof(str), tmp);
    printf("%s\n", tmp);
    
    char str1[] = "34 - 68";
    char* tmp1 = (char*)malloc(sizeof(str1));
    arithmetic(str1, sizeof(str1), tmp1);
    printf("%s\n", tmp1);
    
    free(tmp);
    free(tmp1);
    return 0;
}











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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值