forked from organicmaps/organicmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgorithm.hpp
44 lines (40 loc) · 838 Bytes
/
algorithm.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pragma once
#include "common_defines.hpp"
#ifdef new
#undef new
#endif
#include <algorithm>
using std::equal;
using std::find;
using std::find_if;
using std::find_first_of;
using std::lexicographical_compare;
using std::lower_bound;
using std::max;
using std::max_element;
using std::min;
using std::next_permutation;
using std::sort;
using std::stable_sort;
using std::partial_sort;
using std::swap;
using std::upper_bound;
using std::unique;
using std::equal_range;
using std::for_each;
using std::copy;
using std::remove_if;
using std::replace;
using std::reverse;
using std::set_union;
using std::set_intersection;
using std::set_difference;
using std::set_symmetric_difference;
using std::swap;
using std::transform;
using std::push_heap;
using std::pop_heap;
using std::sort_heap;
#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif