map pair ok
This commit is contained in:
6
Makefile
6
Makefile
@@ -32,7 +32,7 @@ RESET = "\e[0m"
|
|||||||
|
|
||||||
NAME = containers
|
NAME = containers
|
||||||
|
|
||||||
CC = g++
|
CC = clang++
|
||||||
EXT = cpp
|
EXT = cpp
|
||||||
|
|
||||||
CFLAGS = -Wall -Wextra -Werror $(INCLUDES)
|
CFLAGS = -Wall -Wextra -Werror $(INCLUDES)
|
||||||
@@ -66,11 +66,13 @@ HEADERS = colors.h \
|
|||||||
reverse_iterator.hpp \
|
reverse_iterator.hpp \
|
||||||
equal.hpp \
|
equal.hpp \
|
||||||
lexicographical_compare.hpp \
|
lexicographical_compare.hpp \
|
||||||
|
pair.hpp \
|
||||||
\
|
\
|
||||||
vector.hpp
|
vector.hpp
|
||||||
|
|
||||||
D_TEMPLATES = ./templates
|
D_TEMPLATES = ./templates
|
||||||
TEMPLATES = vector.tpp
|
TEMPLATES = vector.tpp \
|
||||||
|
map.tpp
|
||||||
|
|
||||||
D_TESTS = ./tests/includes
|
D_TESTS = ./tests/includes
|
||||||
TESTS = main.hpp \
|
TESTS = main.hpp \
|
||||||
|
|||||||
118
headers/map.hpp
118
headers/map.hpp
@@ -2,52 +2,68 @@
|
|||||||
#ifndef MAP_HPP
|
#ifndef MAP_HPP
|
||||||
# define MAP_HPP
|
# define MAP_HPP
|
||||||
|
|
||||||
//# include "colors.h"
|
# include "colors.h"
|
||||||
//# include <iostream>
|
# include <memory> // std::allocator
|
||||||
//# include <string>
|
# include <cstddef> // NULL, std::size_t, std::ptrdiff_t
|
||||||
//# include <memory> // std::allocator
|
# include <functional> // std::less, std::binary_function
|
||||||
//# include <algorithm> // std::min, std::max
|
|
||||||
//# include <stdexcept> // out_of_range, length_error, logic_error
|
# include "pair.hpp"
|
||||||
//# include <cstddef> // NULL, std::size_t, std::ptrdiff_t
|
//# include "bst.hpp"
|
||||||
//
|
|
||||||
//# include "enable_if.hpp"
|
|
||||||
//# include "is_integral.hpp"
|
|
||||||
//# include "reverse_iterator.hpp"
|
|
||||||
//# include "equal.hpp"
|
|
||||||
//# include "lexicographical_compare.hpp"
|
|
||||||
|
|
||||||
namespace ft {
|
namespace ft {
|
||||||
|
|
||||||
//template <
|
template <
|
||||||
// class T,
|
class Key, // map::key_type
|
||||||
// class Allocator = std::allocator<T> >
|
class T, // map::mapped_type
|
||||||
class map {
|
class Compare = std::less<Key>, // map::key_compare
|
||||||
|
class Alloc = std::allocator< ft::pair<const Key, T> > // map::allocator_type
|
||||||
|
> class map {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
// typedef T value_type;
|
typedef Key key_type;
|
||||||
// typedef Allocator allocator_type;
|
typedef T mapped_type;
|
||||||
// typedef std::size_t size_type;
|
typedef pair<const Key, T> value_type;
|
||||||
// typedef std::ptrdiff_t difference_type;
|
typedef std::size_t size_type;
|
||||||
//
|
typedef std::ptrdiff_t difference_type;
|
||||||
// typedef T * iterator;
|
typedef Compare key_compare;
|
||||||
// typedef T const * const_iterator;
|
typedef Alloc allocator_type;
|
||||||
// typedef ft::reverse_iterator<iterator> reverse_iterator;
|
|
||||||
// typedef ft::reverse_iterator<const_iterator> const_reverse_iterator;
|
|
||||||
//
|
|
||||||
// // dependent qualified name :
|
|
||||||
// // https://en.cppreference.com/w/cpp/keyword/typename
|
|
||||||
// typedef typename Allocator::reference reference;
|
|
||||||
// typedef typename Allocator::const_reference const_reference;
|
|
||||||
|
|
||||||
|
// typedef typename allocator_type::reference reference;
|
||||||
|
// typedef typename allocator_type::const_reference const_reference;
|
||||||
|
// typedef typename allocator_type::pointer pointer;
|
||||||
|
// typedef typename allocator_type::const_pointer const_pointer;
|
||||||
|
|
||||||
|
// typedef Bst<Key,T,Compare,Alloc> bst_map;
|
||||||
|
|
||||||
|
// typedef typename bst_map::iterator iterator;
|
||||||
|
// typedef typename bst_map::const_iterator const_iterator;
|
||||||
|
// typedef typename bst_map::reverse_iterator reverse_iterator;
|
||||||
|
// typedef typename bst_map::const_reverse_iterator const_reverse_iterator;
|
||||||
|
|
||||||
|
|
||||||
|
/****************
|
||||||
|
* member class :
|
||||||
|
****************/
|
||||||
|
// // https://en.cppreference.com/w/cpp/container/map/value_compare
|
||||||
|
// class value_compare : public std::binary_function<value_type, value_type, bool>
|
||||||
|
// {
|
||||||
|
// friend class map;
|
||||||
|
// protected:
|
||||||
|
// Compare comp;
|
||||||
|
// value_compare(Compare c) : comp(c) {}
|
||||||
|
// public:
|
||||||
|
// bool operator() (const value_type& x, const value_type& y) const
|
||||||
|
// { return comp(x.first, y.first); }
|
||||||
|
// };
|
||||||
|
|
||||||
|
|
||||||
/************
|
/************
|
||||||
* copliens :
|
* copliens :
|
||||||
************/
|
************/
|
||||||
//// constructors ------------------------------
|
//// constructors ------------------------------
|
||||||
// explicit map (const key_compare& comp = key_compare(),
|
explicit map (const key_compare& comp = key_compare(),
|
||||||
// const allocator_type& alloc = allocator_type());
|
const allocator_type& alloc = allocator_type());
|
||||||
// template <class InputIterator>
|
// template <class InputIterator>
|
||||||
// map (InputIterator first, InputIterator last,
|
// map (InputIterator first, InputIterator last,
|
||||||
// const key_compare& comp = key_compare(),
|
// const key_compare& comp = key_compare(),
|
||||||
@@ -148,16 +164,38 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
// size_type _size;
|
allocator_type _allocator;
|
||||||
// size_type _capacity;
|
key_compare _comp;
|
||||||
// value_type * _mem_ptr;
|
|
||||||
// allocator_type _allocator;
|
|
||||||
//
|
|
||||||
// void _destroy(iterator first, iterator last);
|
|
||||||
// void _increment_capacity(size_type n);
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/************************
|
||||||
|
* non-member functions :
|
||||||
|
************************/
|
||||||
|
//// operator == -------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator==
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator != -------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator!=
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator < --------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator<
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator <= -------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator<=
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator > --------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator>
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator >= -------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator>=
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// swap (map) -----------------------------
|
||||||
|
//template< class Key, class T, class Compare, class Alloc > void swap
|
||||||
|
// ( std::map<Key,T,Compare,Alloc>& lhs, std::map<Key,T,Compare,Alloc>& rhs );
|
||||||
|
|
||||||
|
|
||||||
} // namespace ft
|
} // namespace ft
|
||||||
|
|
||||||
# include "map.tpp"
|
# include "map.tpp"
|
||||||
|
|||||||
89
headers/pair.hpp
Normal file
89
headers/pair.hpp
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
#ifndef PAIR_HPP
|
||||||
|
# define PAIR_HPP
|
||||||
|
|
||||||
|
# define PR_TPL template < class T1, class T2 >
|
||||||
|
# define PR pair<T1, T2>
|
||||||
|
|
||||||
|
namespace ft {
|
||||||
|
|
||||||
|
PR_TPL
|
||||||
|
struct pair {
|
||||||
|
|
||||||
|
typedef T1 first_type;
|
||||||
|
typedef T2 second_type;
|
||||||
|
|
||||||
|
pair();
|
||||||
|
template< typename U, typename V >
|
||||||
|
pair(const pair<U,V>& pr);
|
||||||
|
pair(const first_type& a, const second_type& b);
|
||||||
|
|
||||||
|
T1 first;
|
||||||
|
T2 second;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/************
|
||||||
|
* copliens :
|
||||||
|
************/
|
||||||
|
PR_TPL PR::
|
||||||
|
pair() {
|
||||||
|
}
|
||||||
|
PR_TPL template< typename U, typename V > PR::
|
||||||
|
pair(const pair<U,V>& pr) : first(pr.first), second(pr.second) {
|
||||||
|
}
|
||||||
|
PR_TPL PR::
|
||||||
|
pair(const first_type& a, const second_type& b) : first(a), second(b) {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/************************
|
||||||
|
* non-member functions :
|
||||||
|
************************/
|
||||||
|
PR_TPL
|
||||||
|
bool operator==(const PR& lhs, const PR& rhs) {
|
||||||
|
|
||||||
|
return (lhs.first == rhs.first) && (lhs.second == rhs.second);
|
||||||
|
}
|
||||||
|
PR_TPL
|
||||||
|
bool operator<(const PR& lhs, const PR& rhs) {
|
||||||
|
|
||||||
|
return (
|
||||||
|
lhs.first < rhs.first
|
||||||
|
|| ( !(rhs.first < lhs.first) && (lhs.second < rhs.second) )
|
||||||
|
);
|
||||||
|
}
|
||||||
|
PR_TPL
|
||||||
|
bool operator!=(const PR& lhs, const PR& rhs) {
|
||||||
|
|
||||||
|
return !(lhs == rhs);
|
||||||
|
}
|
||||||
|
PR_TPL
|
||||||
|
bool operator>(const PR& lhs, const PR& rhs) {
|
||||||
|
|
||||||
|
return (rhs < lhs);
|
||||||
|
}
|
||||||
|
PR_TPL
|
||||||
|
bool operator<=(const PR& lhs, const PR& rhs) {
|
||||||
|
|
||||||
|
return !(lhs > rhs);
|
||||||
|
}
|
||||||
|
|
||||||
|
PR_TPL
|
||||||
|
bool operator>=(const PR& lhs, const PR& rhs) {
|
||||||
|
|
||||||
|
return !(lhs < rhs);
|
||||||
|
}
|
||||||
|
PR_TPL
|
||||||
|
PR make_pair(T1 x, T2 y) {
|
||||||
|
|
||||||
|
return PR(x, y) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace ft
|
||||||
|
|
||||||
|
# undef PR
|
||||||
|
# undef PR_TPL
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
@@ -1,9 +1,7 @@
|
|||||||
|
|
||||||
//#define VT_TPL template <class T, class Allocator>
|
|
||||||
//#define VT vector<T, Allocator>
|
|
||||||
|
|
||||||
//#define MP_TPL template < typename Key, typename T, typename Compare, typename Allocator >
|
#define MP_TPL template < typename Key, typename T, typename Compare, typename Alloc >
|
||||||
//#define MP map<Key, T, Compare, Allocator>
|
#define MP map<Key, T, Compare, Alloc>
|
||||||
|
|
||||||
|
|
||||||
namespace ft {
|
namespace ft {
|
||||||
@@ -13,8 +11,13 @@ namespace ft {
|
|||||||
* copliens :
|
* copliens :
|
||||||
************/
|
************/
|
||||||
//// constructors ------------------------------
|
//// constructors ------------------------------
|
||||||
// explicit map (const key_compare& comp = key_compare(),
|
MP_TPL MP::
|
||||||
// const allocator_type& alloc = allocator_type());
|
map (const key_compare & comp, const allocator_type & alloc)
|
||||||
|
: _allocator(alloc)
|
||||||
|
, _comp(comp) {
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
// template <class InputIterator>
|
// template <class InputIterator>
|
||||||
// map (InputIterator first, InputIterator last,
|
// map (InputIterator first, InputIterator last,
|
||||||
// const key_compare& comp = key_compare(),
|
// const key_compare& comp = key_compare(),
|
||||||
@@ -113,8 +116,34 @@ namespace ft {
|
|||||||
//// get_allocator -----------------------------
|
//// get_allocator -----------------------------
|
||||||
// allocator_type get_allocator() const;
|
// allocator_type get_allocator() const;
|
||||||
|
|
||||||
|
|
||||||
|
/************************
|
||||||
|
* non-member functions :
|
||||||
|
************************/
|
||||||
|
//// operator == -------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator==
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator != -------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator!=
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator < --------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator<
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator <= -------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator<=
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator > --------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator>
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// operator >= -------------------------------
|
||||||
|
//template< class K, class T, class Comp, class Alloc > bool operator>=
|
||||||
|
// ( const std::map<K,T,Comp,Alloc>& lhs, const std::map<K,T,Comp,Alloc>& rhs );
|
||||||
|
//// swap (map) -----------------------------
|
||||||
|
//template< class Key, class T, class Compare, class Alloc > void swap
|
||||||
|
// ( std::map<Key,T,Compare,Alloc>& lhs, std::map<Key,T,Compare,Alloc>& rhs );
|
||||||
|
|
||||||
} // namespace ft
|
} // namespace ft
|
||||||
|
|
||||||
//#undef VT
|
#undef VT
|
||||||
//#undef VT_TPL
|
#undef VT_TPL
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
namespace ft = std;
|
namespace ft = std;
|
||||||
#else
|
#else
|
||||||
#include "vector.hpp"
|
#include "vector.hpp"
|
||||||
|
#include "map.hpp"
|
||||||
#include "reverse_iterator.hpp"
|
#include "reverse_iterator.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -82,9 +83,6 @@ extern std::vector< mystruct* > mem_list;
|
|||||||
{ void func(); };\
|
{ void func(); };\
|
||||||
void f_name () {\
|
void f_name () {\
|
||||||
add_to_list(#f_name, "int, int", new(s_ ## f_name <int, int>));\
|
add_to_list(#f_name, "int, int", new(s_ ## f_name <int, int>));\
|
||||||
add_to_list("", "char, int", new(s_ ## f_name <char, int>));\
|
|
||||||
add_to_list("", "std::string, int", new(s_ ## f_name <std::string, int>));\
|
|
||||||
add_to_list("", "mystruct*, int", new(s_ ## f_name <mystruct*, int>));\
|
|
||||||
}\
|
}\
|
||||||
template <class T, class U>\
|
template <class T, class U>\
|
||||||
void s_ ## f_name <T, U>::func()
|
void s_ ## f_name <T, U>::func()
|
||||||
@@ -104,15 +102,15 @@ template <class T>
|
|||||||
std::cout << "\nsize:" << vec.size() << " capacty:" << vec.capacity() << "\n";
|
std::cout << "\nsize:" << vec.size() << " capacty:" << vec.capacity() << "\n";
|
||||||
}
|
}
|
||||||
template <class T, class U>
|
template <class T, class U>
|
||||||
void print(ft::map<T, U> ma) {
|
void print(ft::map<T, U> mp) {
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
typename ft::map<T, U>::iterator it;
|
typename ft::map<T, U>::iterator it;
|
||||||
typename ft::map<T, U>::iterator it_end = ma.end();
|
typename ft::map<T, U>::iterator it_end = mp.end();
|
||||||
|
|
||||||
for (it = ma.begin(); it != it_end; ++it, i++)
|
for (it = mp.begin(); it != it_end; ++it, i++)
|
||||||
std::cout << "[" << i << "]" << it->first << ":" << it->second << " ";
|
std::cout << "[" << i << "]" << it->first << ":" << it->second << " ";
|
||||||
std::cout << "\nsize:" << ma.size() << "\n";
|
std::cout << "\nsize:" << mp.size() << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
// templates get value
|
// templates get value
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
int main() {
|
int main() {
|
||||||
|
|
||||||
// VECTOR
|
// VECTOR
|
||||||
tests_vector_constructor();
|
// tests_vector_constructor();
|
||||||
// tests_vector_operator_assignation();
|
// tests_vector_operator_assignation();
|
||||||
// tests_vector_begin();
|
// tests_vector_begin();
|
||||||
// tests_vector_end();
|
// tests_vector_end();
|
||||||
@@ -57,6 +57,8 @@ int main() {
|
|||||||
// tests_map_upper_bound();
|
// tests_map_upper_bound();
|
||||||
// tests_map_equal_range();
|
// tests_map_equal_range();
|
||||||
// tests_map_get_allocator();
|
// tests_map_get_allocator();
|
||||||
|
// tests_map_relational_operators();
|
||||||
|
// tests_map_swap_non_member();
|
||||||
|
|
||||||
|
|
||||||
// STACK
|
// STACK
|
||||||
|
|||||||
@@ -9,15 +9,12 @@ TEST_M(tests_map_simple)
|
|||||||
// title
|
// title
|
||||||
TITLE(simple test)
|
TITLE(simple test)
|
||||||
|
|
||||||
typename std::map<T, U> first;
|
typename ft::map<T, U> mp;
|
||||||
typename std::map<T, U>::iterator it;
|
// typename std::map<T, U>::iterator it;
|
||||||
|
//
|
||||||
first[VALT('a')]=VALU(10);
|
// mp[VALT('a')] = VALU(10);
|
||||||
first[VALT('b')]=VALU(30);
|
//
|
||||||
first[VALT('c')]=VALU(50);
|
// PRINT(mp)
|
||||||
first[VALT('d')]=VALU(70);
|
|
||||||
|
|
||||||
PRINT(first)
|
|
||||||
|
|
||||||
DELETE
|
DELETE
|
||||||
}
|
}
|
||||||
@@ -543,6 +540,71 @@ TEST_M(tests_map_get_allocator)
|
|||||||
DELETE
|
DELETE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_M(tests_map_relational_operators)
|
||||||
|
{
|
||||||
|
// title
|
||||||
|
TITLE(cplusplus.com reference)
|
||||||
|
|
||||||
|
std::map<int, char> alice{{1, 'a'}, {2, 'b'}, {3, 'c'}};
|
||||||
|
std::map<int, char> bob{{7, 'Z'}, {8, 'Y'}, {9, 'X'}, {10, 'W'}};
|
||||||
|
std::map<int, char> eve{{1, 'a'}, {2, 'b'}, {3, 'c'}};
|
||||||
|
|
||||||
|
std::cout << std::boolalpha;
|
||||||
|
|
||||||
|
// Compare non equal containers
|
||||||
|
std::cout << "alice == bob returns " << (alice == bob) << '\n';
|
||||||
|
std::cout << "alice != bob returns " << (alice != bob) << '\n';
|
||||||
|
std::cout << "alice < bob returns " << (alice < bob) << '\n';
|
||||||
|
std::cout << "alice <= bob returns " << (alice <= bob) << '\n';
|
||||||
|
std::cout << "alice > bob returns " << (alice > bob) << '\n';
|
||||||
|
std::cout << "alice >= bob returns " << (alice >= bob) << '\n';
|
||||||
|
|
||||||
|
std::cout << '\n';
|
||||||
|
|
||||||
|
// Compare equal containers
|
||||||
|
std::cout << "alice == eve returns " << (alice == eve) << '\n';
|
||||||
|
std::cout << "alice != eve returns " << (alice != eve) << '\n';
|
||||||
|
std::cout << "alice < eve returns " << (alice < eve) << '\n';
|
||||||
|
std::cout << "alice <= eve returns " << (alice <= eve) << '\n';
|
||||||
|
std::cout << "alice > eve returns " << (alice > eve) << '\n';
|
||||||
|
std::cout << "alice >= eve returns " << (alice >= eve) << '\n';
|
||||||
|
|
||||||
|
DELETE
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
TEST_M(tests_map_swap_non_member)
|
||||||
|
{
|
||||||
|
// title
|
||||||
|
TITLE(cplusplus.com reference)
|
||||||
|
|
||||||
|
std::map<int, char> alice{{1, 'a'}, {2, 'b'}, {3, 'c'}};
|
||||||
|
std::map<int, char> bob{{7, 'Z'}, {8, 'Y'}, {9, 'X'}, {10, 'W'}};
|
||||||
|
|
||||||
|
auto print = [](std::pair<const int, char>& n) {
|
||||||
|
std::cout << " " << n.first << '(' << n.second << ')';
|
||||||
|
};
|
||||||
|
|
||||||
|
// Print state before swap
|
||||||
|
std::cout << "alice:";
|
||||||
|
std::for_each(alice.begin(), alice.end(), print);
|
||||||
|
std::cout << "\n" "bob :";
|
||||||
|
std::for_each(bob.begin(), bob.end(), print);
|
||||||
|
std::cout << '\n';
|
||||||
|
|
||||||
|
std::cout << "-- SWAP\n";
|
||||||
|
std::swap(alice, bob);
|
||||||
|
|
||||||
|
// Print state after swap
|
||||||
|
std::cout << "alice:";
|
||||||
|
std::for_each(alice.begin(), alice.end(), print);
|
||||||
|
std::cout << "\n" "bob :";
|
||||||
|
std::for_each(bob.begin(), bob.end(), print);
|
||||||
|
std::cout << '\n';
|
||||||
|
|
||||||
|
DELETE
|
||||||
|
}
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user