LeetCode之Remove Element
【摘要】 1、题目
Given an array and a value, remove all instances of that value in place and return the new length.
Do not allocate extra space for another array, you must do this in place with c...
1、题目
Given an array and a value, remove all instances of that value in place and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
The order of elements can be changed. It doesn't matter what you leave beyond the new length.
Example:
Given input array nums = [3,2,2,3]
, val = 3
Your function should return length = 2, with the first two elements of nums being 2.
2、代码实现
-
int removeElement(int* nums, int numsSize, int val) {
-
if (nums == NULL) {
-
return 0;
-
}
-
int count = 0;
-
for (int i = 0; i < numsSize; ++i) {
-
if (*(nums + i) != val) {
-
*(nums + count++) = *(nums + i);
-
}
-
}
-
return count;
-
}
-
文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。
原文链接:chenyu.blog.csdn.net/article/details/66974946
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)