天天看点

c语言写leetcode的常见坑

错误关键词1:runtime error: member access within misaligned address 0xbebebebebebebebe

常见原因:这一般是要访问某个变量,但是没有malloc,或者是你malloc的变量没有赋值的指针没有设置为NULL;不用的指针一定要设置为NULL!!!

错误关键词2:

c语言写leetcode的常见坑

常见原因:如果提示是heap-buffer-overflow就是你malloc出来的变量(一般是数组)越界访问了,如果是stack-buffer-overflow一般是你的局部变量(一般也是数组)越界访问了,赶紧看看循环的边界条件!! 

错误关键词3:

Line 21: Char 28: runtime error: negation of -2147483648 cannot be represented in type 'int'; cast to an unsigned type to negate this value to itself (solution.cpp)

常见原因:库函数中的abs(int a,int b),a和b不能超出int的表示范围,否则就会报这个错误

错误关键词

  This frame has 2 object(s):

    [32, 36) 'p'

    [96, 40096) 'arr' <== Memory access at offset 40096 overflows this variable

HINT: this may be a false positive if your program uses some custom stack unwind mechanism or swapcontext

也是在栈溢出里面的,但是并没有越界访问,暂时还是不知道。