CTCI系列--1.5 字符串压缩(C语言)

6 篇文章 0 订阅
5 篇文章 0 订阅

题目:Implement a method to perform basic string compression using the counts of repeated characters. For example,the string aabcccccaaa would become a2b1c5a3.If the “compressed” string would not become smaller than the original string,your method should return the original string.

实现一个方法,使用统计重复字符的方式完成基础字符串压缩。举个例子,字符串aabcccccaaa将被压缩为a2b1c5a3。如果压缩后的字符串不比原始字符串小,你的方法需要返回原始字符串。

解题思路
  • 获取字符串字符个数,申请字符个数*2的空间作为压缩字符串存储空间
  • 遍历字符串,先取字符串第一个字符,往后比较是否与第一个字符一致,若一致则字符统计计数加1;若不一致则跳到下一步
  • 将目前比较的字符以及统计计数拼接到压缩字符串中,将比较字符替换为当前位置字符,统计计数置1,跳转到下一步;若遍历到字符串末尾则到下一步
  • 比较压缩后字符串与原始字符串的长度,若压缩后比压缩前短,则返回压缩后的字符串;否则返回原始字符串
代码实现
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

void test(char *buf,char **prnt)
{
    int res_len = 0, ori_len = 0;
    char *res = NULL;
    int i;
    char tmp_c = 0;
    int tmp_count=0;
    char tmpbuf[10];

    ori_len = strlen(buf);

    res = malloc(ori_len * 2);
    if (res == NULL)
        return;

    memset(res, 0, ori_len * 2);

    tmp_c = buf[0];
    for (i = 0; i < ori_len+1; i++)
    {
        if (tmp_c == buf[i])
        {
            tmp_count++;
        }
        else
        {
            memset(tmpbuf, 0, sizeof(tmpbuf));
            sprintf(tmpbuf, "%c%d", tmp_c, tmp_count);
            strcat(res, tmpbuf);
            tmp_c = buf[i];
            tmp_count = 1;
        }
    }

    res_len = strlen(res);

    if (res_len < ori_len)
    {
        *prnt = res;
    }
    else
    {
        *prnt = buf;
    }

}

int main(void)
{
    char buf[100];
    char *res = NULL;

    memset(buf, 0, sizeof(buf));
    sprintf(buf, "aabcccccaaa");
    printf("original string : %s\n", buf);
    test(buf,&res);
    printf("After compression : %s\n", res);
    getchar();
    return 0;
}
运行结果

运行结果


文章转载自我的非鱼物语
本文固定链接为:http://linuxue.com/archives/22

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值