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

本贴最后更新于 2689 天前,其中的信息可能已经事过景迁

题目: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;
}

运行结果

运行结果

  • C

    C 语言是一门通用计算机编程语言,应用广泛。C 语言的设计目标是提供一种能以简易的方式编译、处理低级存储器、产生少量的机器码以及不需要任何运行环境支持便能运行的编程语言。

    83 引用 • 165 回帖 • 47 关注
  • 算法
    388 引用 • 254 回帖 • 22 关注
  • CTCI
    5 引用

相关帖子

欢迎来到这里!

我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。

注册 关于
请输入回帖内容 ...