Leetcode - Array - 27. Remove Element(最初の問題)
1.Problem description
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.
日文:配列の重さを落とし、returnの新しい配列の長さ.
2.My solution1(Call library functions)
Leetcodeで塗った最初の問題は、Topcoderスタイルと似ていて、彼が与えたクラスに従って関数を書く必要があり、入力出力を与える必要はありません.
STlに適応したので,直接Vectorライブラリ関数で書いたが,leetcode上で裸のアルゴリズムを実現するために最善を尽くすべきであることが分かった.
Mycode:
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.
日文:配列の重さを落とし、returnの新しい配列の長さ.
2.My solution1(Call library functions)
Leetcodeで塗った最初の問題は、Topcoderスタイルと似ていて、彼が与えたクラスに従って関数を書く必要があり、入力出力を与える必要はありません.
STlに適応したので,直接Vectorライブラリ関数で書いたが,leetcode上で裸のアルゴリズムを実現するために最善を尽くすべきであることが分かった.
Mycode:
class Solution {
public:
int removeElement(vector& nums, int val) {
vector::iterator It;
It = nums.begin();
while(It!=nums.end())
{
if(*It==val)
{
It= nums.erase(It);
continue;
}
It++;
}
return nums.size();
}
};
Tricks:
Vector 。
erase() Iter , 。 , erase() ,Iter , 。 , 。
for(Iter = v1.begin(); Iter != v1.end(); Iter++)
{
if(*Iter == 10)
{
v1.erase(Iter);
Iter = v1.begin(); // erase ,
}
}
Iter
:
for(Iter = v1.begin(); Iter != v1.end(); Iter++)
{
if(*Iter == 10)
{
Iter = v1.erase(Iter);//Iter
// Iter 20, debug
}
if(Iter == v1.end()) //
{
break;
}
}
3.My solution2(Two Pointers)
Leetcode , , 。
int removeElement(vector& nums, int val) {
int i=0;
int j=0;
int len=nums.size();
for(j;j