LeetCode27.移动元素 报错:==42==ERROR: AddressSanitizer: heap

发布时间:2024-11-20 17:33

移动游戏常常有社交元素,增加了游戏乐趣 #生活乐趣# #游戏乐趣# #移动游戏#

最新推荐文章于 2024-01-12 12:45:45 发布

LifeIsUp 于 2022-01-21 11:46:32 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

LeetCode 27.移动元素

给你一个数组 nums 和一个值 val,你需要 原地 移除所有数值等于 val 的元素,并返回移除后数组的新长度。

不要使用额外的数组空间,你必须仅使用 O(1) 额外空间并 原地 修改输入数组。

元素的顺序可以改变。你不需要考虑数组中超出新长度后面的元素。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/remove-element

实现代码:

class Solution { public: int removeElement(vector<int>& nums, int val) { int size = nums.size(); for (int i = 0; i < size; i++) { if(nums[i] == val) { for (int j = i; j < size; j++) { nums[j] = nums[j + 1]; } i--; size--; } } return size; } };

12345678910111213141516

LeetCode代码执行结果:

==42==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x6020000000a0 at pc 0x00000034c580 bp 0x7ffc151294e0 sp 0x7ffc151294d8 READ of size 4 at 0x6020000000a0 thread T0 #2 0x7f87456340b2 (/lib/x86_64-linux-gnu/libc.so.6+0x270b2) 0x6020000000a0 is located 0 bytes to the right of 16-byte region [0x602000000090,0x6020000000a0) allocated by thread T0 here: #6 0x7f87456340b2 (/lib/x86_64-linux-gnu/libc.so.6+0x270b2) 123456

解决:

问题出在这一段代码:

for (int j = i; j < size; j++) { nums[j] = nums[j + 1]; 12

当j = size -1时,nums[j + 1]将超出数组nums的下标。
因此,将此段代码改为:

for (int j = i + 1; j < size; j++) { nums[j - 1] = nums[j]; 12

网址:LeetCode27.移动元素 报错:==42==ERROR: AddressSanitizer: heap https://www.yuejiaxmz.com/news/view/158291

相关内容

windows cmd 执行sql文件ERROR 1064 (42000):You have an error in your SQL syn报语法错误解决办法
MYSQL启动失败解决方法
error (code = 160) executing in command 'se
启动系统服务clickhouse报错clickhouse
网络优化:提高传输速度和可靠性
dart 错误
《剑网3无界》移动端技能详解
Error
Server Error in '/' Application.
500 Internal Server Error

随便看看