zoukankan      html  css  js  c++  java
  • c++ 实现向量去重操作

    去重的时候要考虑线性表或链表是否是有序

         1.1.无序线性表   

         对于向量[1,5,3,7,2,4,7,3], 从头开始扫描vector内的元素, 对于表中r处的元素a[r], 检查数组0至r-1区间内是否存在与a[r]重复的元素, 如果存在就删除,否则r++

    void deduplicate(vector<int> a){
        int len = a.size(), r = 0;
        vector<int>::itrator it;
        while(++r < len){
            # find the duplicate before a[r]
            it = find(a.begin(), a.begin()+r, a[r]);
            # remove the duplicate if it is found
            if(it!=a.begin()+r) a.erase(it);
        }
    }

          1.2.有序线性表

         以重复区间为单位批量删除. 对于向量[2,2,2,3,3,3,6,6,6,6,9,9],设两个指针i, j, 初始时 i 指向第一个元素, j 指向紧邻i 的第二个元素, 如果a[i]=a[j], 则直接跳过(++j), 否则令i指向j所对应的元素, 然后++j 

    vector<int> deduplicate(vector<int> a){
        int i=0, j = 0;
        int len = a.size();
    # scan the vector the the end
    while(++j < len){ # skip the duplicates if(a[i]!=a[j]) a[++i] = a[j]; } vector<int> newv(a.begin(), a.begin()+i+1); return newv; }

           

        

    参考资料: 数据结构 c++第三版 邓俊辉著

  • 相关阅读:
    c#2005中的各个控件转换为html代码
    支付宝接口参数详谈
    IE6兼容菜单
    cookie版购物车
    火狐执行子页面方法
    easyui中datebox文本框输入非数字报错的改善
    右侧悬浮菜单
    内边距、边框和外边距
    自我超越
    DateUtils 时间工具类
  • 原文地址:https://www.cnblogs.com/laozhanghahaha/p/12180312.html
Copyright © 2011-2022 走看看