VC与GCC代码编译差别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VC与GCC代码编译差别相关的知识,希望对你有一定的参考价值。

Manacher算法,实现最长回文字符串检测的算法。算法实现在Gcc编译环境下运行出现错误,但是在VC环境下运行正常。

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

void PrintString(char* s);
char* longestPalindrome(char* s) {
    int index_s=0,index_f=1;
    int id=1,mx=0;
    int str_len = strlen(s);
    int* pos_table = (int*)malloc(str_len*2+3);
    char* full_str = (char*)malloc(str_len*2+3);/* abc --> $#a#b#c#‘0‘ */

    printf("strlen = %d\\n",str_len);
    *(full_str) = $;
    while(*(s+index_s) != \\0){
        *(full_str+index_f) = #;
        index_f++;
        *(full_str+index_f) = *(s+index_s);
        index_f++;
        index_s++;
    }
    *(full_str+index_f) = #;
    *(full_str+index_f+1) = \\0;
    printf("full string is ");PrintString(full_str);
    str_len = strlen(full_str);
    printf("sizeof new string is %d\\n",str_len);
    *(pos_table) = 1;
    for (index_f = 1; index_f < str_len; index_f++){
        printf("index_f=%d,mx=%d,id=%d\\n",index_f,mx,id);
        if (index_f < mx){
            if (*(pos_table+2*id-index_f) < (mx-index_f)){
                *(pos_table+index_f) = *(pos_table+2*id-index_f);
                continue;
            } else {
                *(pos_table+index_f) = *(pos_table+2*id-index_f);
                for (index_s = mx+1; index_s < str_len; index_s++){
                    printf("index_s=%d",index_s);
                    if (*(full_str+index_f+index_s) == (*(full_str+index_f-index_s))){
                        *(pos_table+index_f) += 1;
                    }else{
                        break;
                    }
                }
                id = index_f;
                mx = index_f+index_s-1;
                continue;
            }
        } else {
            *(pos_table+index_f) = 1;
            for (index_s = 1; index_s < str_len; index_s++){
          // 以下四句打印输出均不正常,类似于新开辟的字符串缓冲区被破坏了一样。 printf(
"\\tindex_f=%d,index_s=%d,full_str=%d \\n",index_f,index_s,(int)full_str); printf("\\tfull_str[i]=%c, \\t",*(full_str+index_f+index_s)); printf("\\tfull_str[-i]=%c \\n",*(full_str+index_f-index_s));

 

printf("full string is ");PrintString(full_str);

                if (*(full_str+index_f+index_s) == (*(full_str+index_f-index_s))){
                    *(pos_table+index_f) += 1;
                }else{
                    break;
                }
            }
            id = index_f;
            mx = index_f+index_s-1;
        }
        continue;
    }
    for (index_f = 0; index_f < str_len; index_f++){
        printf("%d",*(pos_table+index_f));
    }
    printf("\\n");
    return full_str;
}

void PrintString(char* s)
{
    int index=0;
    while(*(s+index) != \\0){
        printf("%c",*(s+index));
        index++;
    }
    printf("\\n");
}

int main(void)
{
    char* s="aba";
    char* result;

    result = longestPalindrome(s);
    printf("This is question No.5 \\n");
}

出错的情形如下图所示:

 

技术分享 技术分享

 

 Gcc环境下出错的情形  VC环境下正常的情形

以上是关于VC与GCC代码编译差别的主要内容,如果未能解决你的问题,请参考以下文章

GCC:编译成程序集并明确与代码的对应关系?

gcc 和VC++有啥区别呢,VC++编译时用的编译器 相当于gcc的是啥东西

C语言编译器icc与gcc编译出来的执行文件有啥区别?

GCC是啥编译器?跟vc自带的有啥不同?

mingw和gcc的关系?mingw具有gcc的全部核心编译功能吗

G++和GCC和C,C++有啥区别的