删除数组中重复的数字问题:一个动态长度可变的数字
23 查阅
参考答案:
问题比较简单,要注意的是这个数组是动态的。所以避免麻烦我还是用了STL的vector。
\r\n
#include <iostream>
#include <vector>
using namespace std;
//remove the duplicated numbers in an intger array, the array was end with 0;
//e.g. 1,1,1,2,