/************************************************************************** * * merge.cpp - Example program demonstrating the merge algorithms. * * $Id: merge.cpp 648752 2008-04-16 17:01:56Z faridz $ * *************************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing * permissions and limitations under the License. * * Copyright 1994-2006 Rogue Wave Software. * **************************************************************************/ #include // advance, copy, inplace_merge, merge #include // less #include // cout #include // back_inserter, ostream_iterator #include // vector #include int main () { typedef std::vector > Vector; const Vector::value_type d1[] = { 1, 2, 3, 4}; const Vector::value_type d2[] = { 11, 13, 15, 17, 12, 14, 16, 18}; // Set up two vectors. Vector v1 (d1 + 0, d1 + sizeof d1 / sizeof *d1); Vector v2 (d1 + 0, d1 + sizeof d1 / sizeof *d1); // Set up four destination vectors. Vector v3 (d2 + 0, d2 + sizeof d2 / sizeof *d2); Vector v4 (v3); Vector v5 (v3); Vector v6 (v3); // Set up one empty vector. Vector v7; // Merge v1 with v2. std::merge (v1.begin (), v1.end (), v2.begin (), v2.end (), v3.begin ()); // Now use comparator. std::merge (v1.begin (), v1.end (), v2.begin (), v2.end (), v4.begin (), std::less()); // Merge v5 in place. Vector::iterator mid = v5.begin (); std::advance (mid, 4); // equivalent to mid += 4 but more generic std::inplace_merge (v5.begin (), mid, v5.end ()); // Now use a comparator on v6. mid = v6.begin (); std::advance (mid, 4); // equivalent to mid += 4 but more generic std::inplace_merge (v6.begin (), mid, v6.end (), std::less()); // Merge v1 and v2 to empty vector using insert iterator. std::merge (v1.begin (), v1.end (), v2.begin (), v2.end (), std::back_inserter (v7)); // Copy all to cout. std::ostream_iterator > out (std::cout, " "); std::copy (v1.begin (), v1.end (), out); std::cout << '\n'; std::copy (v2.begin (), v2.end (), out); std::cout << '\n'; std::copy (v3.begin (), v3.end (), out); std::cout << '\n'; std::copy (v4.begin (), v4.end (), out); std::cout << '\n'; std::copy (v5.begin (), v5.end (), out); std::cout << '\n'; std::copy (v6.begin (), v6.end (), out); std::cout << '\n'; std::copy (v7.begin (), v7.end (), out); std::cout << '\n'; // Merge v1 and v2 to cout. std::merge (v1.begin (), v1.end (), v2.begin (), v2.end (), out); std::cout << '\n'; return 0; }