Line 1060: Char 9: runtime error: addition of unsigned offset to 0x7fffda1e0e20 overflowed to 0x7fff

问题描述

LeetCode碰到的错误:

第1060行:Char 9:运行时错误:将无符号偏移量添加到0x7fffda1e0e20溢出到0x7fffda1e0e1f(basic_string.h)
(来自百度翻译)

说白了就是越界了,比如数组、字符串。
对操作边界的代码检查一下!

 
比如字符串s的操作:

while(s[m]==' ')m++;

当m为 s.length()-1 时,再加1就会越界,此时再到while中判断就会报该错误。