C中的RunLength解码[重复]

Posted

技术标签:

【中文标题】C中的RunLength解码[重复]【英文标题】:RunLength Decoding in C [duplicate] 【发布时间】:2015-05-26 15:35:20 【问题描述】:

这是我的运行长度解码程序。但是将输出作为垃圾值提供。 char *decode_rle(char *a,int length) 方法中的输出是正确的,但是当它返回到主函数时它是错误的。

#include<stdio.h>
#include<string.h>

char *decode_rle(char *a,int length)

    char op[50];
    int i,j,k=0,count=0;
    for(i=0;i<length;i++)
    
        if( a[i]=='a' || a[i]=='b' || a[i]=='c' || a[i]=='d' || a[i]=='e' || a[i]=='f' || a[i]=='g')
        
            count = a[i+1] - '0';
            for(j=0;j<count;j++)
            
                op[k]=a[i];
                k++;
            
        
    
    op[k] = '\0';
printf("\n the decoded string is %s\n",op);
    return op;

int main()

    int i=0,j,length,count;
    char a[20],*output;
    printf("\n Enter a string ");
    gets(a);
    printf("\n The string you entered is %s",a);
    length = strlen(a);
    printf("\n length is %d\n",length);
    output = decode_rle(a,length);
    i=0;
    while(output[i]!='\0')
    
        printf("%c",output[i]);
        i++;
   
    getch();
    return 0;

【问题讨论】:

另外,将gets 替换为fgets 【参考方案1】:

问题是你返回了一个指向函数 decode_rle 的局部变量的指针,一旦你从该函数返回,它就不再存在了。

首先,我建议您将 op 声明为 main 的局部变量,并将一个额外的参数传递给 decode_rle。

char *decode_rle(char *a,int 长度, char *op) …… 主函数() ... 字符运算[50]; ... 输出 = decode_rle(a,length, op);

这会起作用,但是...如果您需要它来完成有限的概念证明之外的其他一些问题。

您对 a 和 p 使用固定长度,如果用户在 get 中输入的字符串长度超过 20,会发生什么情况?如果解码后的字符串大于 50 怎么办? (记住 c 不做数组边界检查,如果你写在你不拥有的内存上会发生什么?)

你如何处理二进制 0 ? (请记住,c 中的字符串是使用 asciiz 约定存储的,如果您尝试压缩/解压缩的数据本身包含二进制 0 会发生什么?您将如何更改缓冲区的定义以处理这种情况?)

李>

【讨论】:

【参考方案2】:

您正试图返回一个范围仅为函数decode_rle 的变量。你不能那样做并且安全。当您退出函数时,数组 op 及其内容不再正式可供您的程序访问

你应该编译警告-Wall(你可以添加-Werror来激励你一点)。

【讨论】:

【参考方案3】:

您返回一个指向op 的指针,它是decode_rle() 中的一个局部变量。当函数返回时,该局部变量超出范围,其内存将被重用,因此指向该内存的指针不是很有用。

相反,您可以使用malloc() 分配所需的内存并返回一个指向它的指针,或者向decode_rle() 添加一个附加参数,在其中将一个指针传递给应该写入结果的内存。

【讨论】:

以上是关于C中的RunLength解码[重复]的主要内容,如果未能解决你的问题,请参考以下文章

#'charmap'编解码器无法解码位置1148中的字节0x8d [重复]

UnicodeDecodeError:'ascii'编解码器无法解码位置 284 中的字节 0x93:序数不在范围内(128)[重复]

编解码器无法在 Python 中解码字节 [重复]

读取 csv 文件时出错(unicode 错误)“unicodeescape”编解码器无法解码位置 2-3 中的字节:截断 \UXXXXXXXX 转义 [重复]

如何将json数据解码为objective-c中的数组[重复]

如何解码一个unicode字符串Python [重复]