P4C
The P4 Compiler
Loading...
Searching...
No Matches
algorithm.h
1/*
2Copyright 2013-present Barefoot Networks, Inc.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef LIB_ALGORITHM_H_
18#define LIB_ALGORITHM_H_
19
20#include <algorithm>
21#include <set>
22
23// Round up x/y, for integers
24#define ROUNDUP(x, y) (((x) + (y) - 1) / (y))
25// Elements in an array
26#define ELEMENTS(a) (sizeof(a) / sizeof(a[0]))
27
28/* these should all be in <algorithm>, but are missing... */
29
30template <class C, class T>
31inline bool contains(C &c, const T &val) {
32 return std::find(c.begin(), c.end(), val) != c.end();
33}
34
35template <class C, class Pred>
36inline bool contains_if(C &c, Pred pred) {
37 return std::find_if(c.begin(), c.end(), pred) != c.end();
38}
39
40template <class C, class Pred>
41inline void erase_if(C &c, Pred pred) {
42 for (auto it = c.begin(); it != c.end();) {
43 if (pred(*it))
44 it = c.erase(it);
45 else
46 ++it;
47 }
48}
49
50template <class C, class Pred>
51inline void remove_if(C &c, Pred pred) {
52 c.erase(std::remove_if(c.begin(), c.end(), pred), c.end());
53}
54
55template <class C, class T>
56inline typename C::iterator find(C &c, const T &val) {
57 return std::find(c.begin(), c.end(), val);
58}
59
60using std::max_element;
61using std::min_element;
62
63template <class C>
64inline typename C::const_iterator min_element(const C &c) {
65 return min_element(c.begin(), c.end());
66}
67template <class C, class Compare>
68inline typename C::const_iterator min_element(const C &c, Compare comp) {
69 return min_element(c.begin(), c.end(), comp);
70}
71
72template <class C>
73inline typename C::const_iterator max_element(const C &c) {
74 return max_element(c.begin(), c.end());
75}
76template <class C, class Compare>
77inline typename C::const_iterator max_element(const C &c, Compare comp) {
78 return max_element(c.begin(), c.end(), comp);
79}
80
81template <class Iter, class Fn>
82inline Fn for_each(std::pair<Iter, Iter> range, Fn fn) {
83 return std::for_each(range.first, range.second, fn);
84}
85
86template <class Iter>
87Iter begin(std::pair<Iter, Iter> pr) {
88 return pr.first;
89}
90template <class Iter>
91Iter end(std::pair<Iter, Iter> pr) {
92 return pr.second;
93}
94
95#endif /* LIB_ALGORITHM_H_ */