Union 2 arrays

This is a discussion on Union 2 arrays within the C++ Programming forums, part of the General Programming Boards category; Does anyone know any code to union 2 sets? I have a prototype in my header file of: Code: IntegerSet& ...

  1. #1
    Registered User
    Join Date
    Feb 2005
    Posts
    17

    Union 2 arrays

    Does anyone know any code to union 2 sets?

    I have a prototype in my header file of:
    Code:
    IntegerSet& unionSet( IntegerSet& otherSet );
    I want to union array c and b and am calling the function by:
    Code:
    c.unionSet( b );
    What code could I use to combine into 1 array in the .cpp file, returning a reference to the array?

  2. #2
    Unregistered User
    Join Date
    Sep 2005
    Location
    Antarctica
    Posts
    341
    assuming it's an std::set, can't you use operator += ?

  3. #3
    Registered User hk_mp5kpdw's Avatar
    Join Date
    Jan 2002
    Location
    Northern Virginia/Washington DC Metropolitan Area
    Posts
    3,672
    Or maybe the STL set_union function might be of use depending on how the storage of the data elements is implemented?
    I used to be an adventurer like you... then I took an arrow to the knee.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 16
    Last Post: 10-29-2006, 04:04 AM
  2. Dikumud
    By maxorator in forum C++ Programming
    Replies: 1
    Last Post: 10-01-2005, 06:39 AM
  3. union of two arrays
    By chaitanya in forum C Programming
    Replies: 2
    Last Post: 09-12-2004, 05:53 AM
  4. Crazy memory problem with arrays
    By fusikon in forum C++ Programming
    Replies: 9
    Last Post: 01-15-2003, 08:24 PM
  5. Sorting a Union
    By andy in forum C Programming
    Replies: 4
    Last Post: 11-21-2001, 09:12 AM

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21