LeetCode 27.Remove Element 数组元素删除
27. Remove Element
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 arraynums=[3,2,2,3]
,val=3
Your function should return length = 2, with the first two elements ofnumsbeing 2.
题目大意:删除容器中指定的重复元素,然后返回容器的长度。要求不能申请数组来处理。
classSolution{public:intremoveElement(vector<int>&nums,intval){for(inti=0;i<nums.size();i++){if(nums[i]==val){nums.erase(nums.begin()+i);i--;}}returnnums.size();}};
2016-08-05 20:42:00
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。