码迷,mamicode.com
首页 > 其他好文 > 详细

删除数组中重复元素 (使用stl::set)

时间:2014-09-03 16:52:36      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:os   io   使用   ar   for   sp   log   html   c   

/*
 *程序作用删除数中重复的元素,先使用set 遍历一次数组,然后在使用两个指针,以及set查重,
 *去重复之后使用0填补多余空间
 *复杂度 O(NlogN)
 *空间复杂度 O(N)

 */

#include<iostream>
#include<set>
using namespace std;

void delete_over_arry(int *a,int len);
void print(int *a ,int len);

int main()
{
   int p[]={1,1,2,5,3,7,3,4,8,2,1,3,9,1};
   print(p,sizeof(p)/sizeof(int));
   delete_over_arry( p,sizeof(p)/sizeof(int));
   print(p,sizeof(p)/sizeof(int));
   return 0;
}
void print(int *a ,int len)
{
  for(int i=0;i<len;i++)
      cout<<a[i];
      cout<<endl;
}
void  delete_over_arry(int *a,int len)
{
       set<int>  temp_set;
       int *set_p=a+1;
       int *new_p=a+1;
       int count=0;
       temp_set.insert(a[0]);
       for(int i=1;i<len;i++)
          {  
             if(temp_set.count(*set_p))
              {
                 set_p++;
                 count++;
              }
              else
              {
                 temp_set.insert(*set_p);
                 *new_p++=*set_p++;
              }
          }
        for(int i=0;i<count;i++)
              *new_p++=0;        
}
以下是程序运行结果:

[trageday@lei-yum code_test]$ g++ -o delete_overarray delete_overarray.cpp
[trageday@lei-yum code_test]$ ./delete_overarray 
11253734821391
12537489000000





删除数组中重复元素 (使用stl::set)

标签:os   io   使用   ar   for   sp   log   html   c   

原文地址:http://blog.csdn.net/trageday_motata/article/details/39028947

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!