vote up 3 vote down star

I have a vector containing few non-adjacent duplicates.

As a simple example, consider:

2 1 6 1 4 6 2 1 1

I am trying to make this vector unique by removing the non-adjacent duplicates and maintaining the order of elements.

Result would be:

2 1 6 4

The solutions I tried are:

  1. Inserting into a std::set but the problem with this approach is that it will disturb the order of elements.
  2. Use the combination of std::sort and std::unique. But again same order problem.
  3. Manual duplicate elimination:

        Define a temporary vector TempVector.
        for (each element in a vector)
        {
            if (the element does not exists in TempVector)
            {
            	add to TempVector;
            }
        }
        swap orginial vector with TempVector.
    

My question is:

Is there any STL algorithm which can remove the non-adjacent duplicates from the vector ? what is its complexity?

flag

77% accept rate

6 Answers

vote up 0 vote down

Without using a temporary set it's possible to do this with (possibly) some loss of performance:

template<class Iterator>
Iterator Unique(Iterator first, Iterator last)
{
    while (first != last)
    {
        Iterator next(first);
        last = std::remove(++next, last, *first);
        first = next;
    }

    return last;
}

used as in:

vec.erase( Unique( vec.begin(), vec.end() ), vec.end() );

For smaller data sets, the implementation simplicity and lack of extra allocation required may offset the theoretical higher complexity of using an additional set. Measurement with a representative input is the only way to be sure, though.

link|flag
Excellent solution. I would suggest the name Unique is not a revealing as I'd like. How about RemoveNonUnique? – Andy Balaam Sep 23 at 8:50
vote up 2 vote down

You can remove some of the loops in fa's answer using remove_copy_if:

class NotSeen : public std::unary_function <int, bool>
{
public:
  NotSeen (std::set<int> & seen) : m_seen (seen) { }

  bool operator ()(int i) const  {
    return (m_seen.insert (i).second);
  }

private:
  std::set<int> & m_seen;
};

void removeDups (std::vector<int> const & iv, std::vector<int> & ov) {
  std::set<int> seen;
  std::remove_copy_if (iv.begin ()
      , iv.end ()
      , std::back_inserter (ov)
      , NotSeen (seen));
}

This has no affect on the complexity of the algorithm (ie. as written it's also O(n log n)). You can improve upon this using unordered_set, or if the range of your values is small enough you could simply use an array or a bitarray.

link|flag
Is U_STD a macro from before you knew for sure what the std:: namespace was going to be called? – Steve Jessop Sep 21 at 13:18
@onebyone: Almost! It's a macro that we really don't need to use anymore and goes back to when we used the older g++ compilers ( <= 2.95.3). Force of habit has me writing it everywhere still! – Richard Corden Sep 23 at 7:55
vote up 1 vote down

As far as i know there is none in stl. Look up reference.

link|flag
vote up 2 vote down

There's no STL algorithm doing what you want preserving the sequence's original order.

You could create a std::set of iterators or indexes into the vector, with a comparison predicate that uses the referenced data rather than the iterators/indexes to sort stuff. Then you delete everything from the vector that isn't referenced in the set. (Of course, you could just as well use another std::vector of iterators/indexes, std::sort and std::unique that, and use this as a reference as to what to keep.)

link|flag
vote up 0 vote down

My question is:

Is there any STL algorithm which can remove the non-adjacent duplicates from the vector ? what is its complexity?

The STL options are the ones you mentioned: put the items in a std::set, or call std::sort, std::unique and std::erase. Neither of these fulfills your requirement of "removing the non-adjacent duplicates and maintaining the order of elements."

So why doesn't the STL offer some other option? No standard library will offer everything for every user's needs. The STL's design considerations include "be fast enough for nearly all users," "be useful for nearly all users," and "provide exception safety as much as possible" (and "be small enough for the Standards Committee" as the library Stepanov originally wrote was much larger, and Stroustrup axed out something like 2/3 of it).

The simplest solution I can think of would look like this:

// Note:  an STL-like method would be templatized and use iterators instead of
// hardcoding std::vector<int>
std::vector<int> stable_unique(std::vector<int> input)
{
    std::vector<int> result;
    result.reserve(input.size());
    for (std::vector<int>::iterator itor = input.begin();
                                    itor != input.end();
                                    ++itor)
        if (std::find(result.begin(), result.end(), *itor) == result.end())
            result.push_back(*itor);
        return result;
}

This solution should be O(M*N) where M is the number of unique elements and N is the total number of elements.

link|flag
The axing was a collaborative effort :) The STL was impressive enough, but it was not a simple copy&paste job to get it into the standard. Just look at the efforts needed to get Boost stuff in, and that project was designed to get stuff into the standard. So the "axing" was merely a side-effect of writing full specs for the most important 1/3rd. – MSalters Sep 21 at 9:51
vote up 4 vote down

I think you would do it like this:

I would use two iterators on the vector :

The first of one reads the data and inserts it a temporary set.

When the read data was not in the set you copy it from the first iterator to the second and increment it.

At the end you keep only the data up to the second iterator.

The complexity is O( n .log( n ) ) as the lookup for duplicated elements uses the set, not the vector.

#include <vector>
#include <set>
#include <iostream>

int main(int argc, char* argv[])
{
    std::vector< int > k ;

    k.push_back( 2 );
    k.push_back( 1 );
    k.push_back( 6 );
    k.push_back( 1 );
    k.push_back( 4 );
    k.push_back( 6 );
    k.push_back( 2 );
    k.push_back( 1 );
    k.push_back( 1 );

{
	std::vector< int >::iterator r , w ;

	std::set< int > tmpset ;

	for( r = k.begin() , w = k.begin() ; r != k.end() ; ++r )
	{
		if( tmpset.insert( *r ).second )
		{
			*w++ = *r ;
		}
	}

	k.erase( w , k.end() );
}


    {
    	std::vector< int >::iterator r ;

    	for( r = k.begin() ; r != k.end() ; ++r )
    	{
    		std::cout << *r << std::endl ;
    	}
    }
}
link|flag
Using find and then insert is inefficient. tmpset.insert(*r).second will be true if the value was inserted, and false if the value was already in the set. – cjm Sep 21 at 8:47
I forgot about that, I correct it – fa. Sep 21 at 8:48
It's about time that we're allowed to write std::vector<int> k( {1,2,3} );... – xtofl Sep 21 at 8:51
Other than that (now corrected) thinko, I like this algorithm. – cjm Sep 21 at 8:51
@xtofl try boost::assign ;) – AraK Sep 21 at 9:01
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.