Анимация
JavaScript
|
Главная Библионтека /* Вспомогательные функции для адаптера compose f gx */ template <class OPl. class 0P2> inline compose f gx t<0P1.0P2> compose f gx (const 0P1& ol. const 0P2& o2) { return cofTipose f gx t<OP1.0P2>(ol.o2): Пример использования адаптера compose f gx: fo/composel.cpp #include <iostream> #1nclude <vector> #include <algor1thm> #include <funct1onal> #1nclude <iterator> #include "print.hpp" #1nclude "composell.hpp" using namespace std; int mainO { vector<int> coll; Вставка элементов со значениями от 1 до 9 for (int 1=1; i<=9; ++i) ( coll .push backd): PRINT ELEMENTS(COll); Для каждого элемента прибавить 10 и умножить на 5 transform (coll .beginO ,со11 .endO. ostream iterator<1nt>(cout." "). cornpose f gx(bind2nd(mult1pl ies<int>0 ,5). bind2nd(plus<1nt>0.10))); cout « endl; Обратите внимание: сначала выполняется вторая операция, переданная compose f gx. Таким образом, следующая конструкция создает унарный объект функции, который сначала прибавляет 10, а потом умножает результат на 5: compose f gx(b1nd2nd(fTiultipl1es<1nt>() .5), bind2nd(plus<int>0.10))); Результат вьшолнения программы: 1 2 3 4 5 6 7 8 9 55 60 65 70 75 ВО 85 90 95 Объединение двух критериев с использованием адаптера compose f gx hx Вероятно, из вспомогательных функциональных адаптеров самым важным является тот, который формирует единый критерий логическим объединением двух критериев. Он используется для формулировки условий типа «больше 4 и меньше 7». Возможная реализация адаптера compose f gx hx (в реализации SGI используется имя compose2) выглядит так; fo/compose21.hpp #inc1ude <funct1ona1> /* Класс композитного адаптера compose f gx hx */ template <class OPl. class 0P2. class 0P3> class compose f gx hx t ; public std:;unary function<typename 0P2::argument type. typename OPl::result type> private: OPl opl; Вычисление: oplCop2Cx).орЗСх)) 0P2 op2; 0P3 op3; public: Конструктор compose f gx hx t (const 0P1& ol. const 0P2& o2. const 0P3& o3) ; opUol). op2(o2). орЗСоЗ) ( Вызов функции typename OPl::result type OperatorOCconst typename 0P2: :argument type& x) const { return oplCop2Cx),op3Cx)); /* Вспомогательные функции для адаптера compose f gx hx */ template <class OPl. class 0P2. class 0P3> inline compose f gx hx t<0P1.0P2.0P3> compose f gx hx (const 0P1& ol. const 0P2& o2. const 0P3& o3) ( return compose f gx hx t<OPl.0P2.0P3>(ol.o2.o3); Адаптер compose f gx hx использует первую операцию для объединения результатов двух унарных операций с одним объектом. Следующее выражение создает унарный предикат: compose f gx hx(opl.ор2.орЗ) PRINT ELEMENTS(COll): Следующее выражение формирует унарный предикат для проверки условия «значение больше 4 и меньше 7*: compose f gx hx(log1cal and<bool>(), bind2nd(greater<1nt>().4). blnd2nd(less<1nt>().7))): Результат выполнения программы выглядит так: 1 2 3 4 5 6 7 8 9 1 2 3 4 7 8 9 Этот предикат вычисляет для каждого значения х; opUop2Cx).op3(x)) Пример использования адаптера compose f gx hx: fo/compose2.cpp finclude <iostream> finclude <vector> finclude <algor1thm> finclude <funct1onal> finclude "print.hpp" finclude "compose21.hpp" using namespace std: int mainO vector<int> coll: Вставка элементов со значениями от 1 до 9 for (int 1=1: i<=9; ++1) ( coll.push backCi): PRINTJLEMENTSCcoll): Удаление всех элементов, больших 4. но меньших 7 - retain new end vector<int>::iterator pos: pos = rernove if (coll .beginC) .coll .end(). composej gx hxC1ogi cal and<bool>(). b1nd2nd(greater<lnt>().4). bind2nd(less<1nt>().7))): Стирание "удаленных" элементов из коллекции coll ,erase(pos.coll .endO); 0 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 [ 99 ] 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |