这种渣题都调了两次,还是欠练啊。class Solution {public: int removeElement(vector& nums, int val) { int i=0; int k=0; int j=nums.size(); ...
分类:
其他好文 时间:
2015-06-01 06:11:28
阅读次数:
164
1 class Solution 2 { 3 public: 4 int removeElement(vector& nums, int val) 5 { 6 int len = nums.size(); 7 int i = 0; 8 ...
分类:
其他好文 时间:
2015-05-21 18:46:05
阅读次数:
125
public class Solution { public int removeElement(int[] nums, int val) { if (nums == null || nums.length == 0) { return 0; ...
分类:
其他好文 时间:
2015-05-17 09:14:17
阅读次数:
133
当对Vector进行erase()后,会导致原来的迭代器失效,要特别注意该问题。int removeElement(vector& nums, int val){ vector::iterator itr = nums.begin(); while (itr != nums.end()...
分类:
其他好文 时间:
2015-05-15 22:44:10
阅读次数:
112
Remove all elements from a linked list of integers that have value val.
Example
Given: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6
Return: 1 --> 2 --> 3 --> 4 --> 5
Credits:
Special than...
分类:
编程语言 时间:
2015-04-24 16:27:09
阅读次数:
131
代码:#includeusing namespace std;int removeElement(int A[], int n, int elem) { int t = 0; for (int i = 0; i < n; i++){ if (A[i] == elem){ ...
分类:
其他好文 时间:
2015-04-21 22:01:03
阅读次数:
129
#include
#include
int removeElement(int A[], int n, int elem)
{
if(n==0)
return 0;
int len=n;
for(int i=0,pos=0;i<n;i++)
{
if(A[i]==elem)
len--;
else
A[pos++]=A[i];
}
return len;
...
分类:
其他好文 时间:
2015-04-20 18:36:06
阅读次数:
84
题目链接https://leetcode.com/problems/remove-element/这道题比较简单,为了维护这个leetcode系列的完整性,我依然把它加在这里,code如下class Solution {public: int removeElement(int A[], in...
分类:
其他好文 时间:
2015-04-16 06:42:02
阅读次数:
109
public class Solution { public int removeElement(int[] A, int elem) { if(A==null||A.length<1) return 0; // same http://www.cnblogs.co...
分类:
其他好文 时间:
2015-04-10 15:02:18
阅读次数:
90
线性表的删除操作,这里可以用ArrayList实现简单的完成。(偷懒)public class Solution { public int removeElement(int[] A, int elem) { ArrayList arr = new ArrayL...
分类:
其他好文 时间:
2015-04-03 12:52:08
阅读次数:
105