| [255] | 1 | // -*- C++ -*- |
|---|
| 2 | |
|---|
| [373] | 3 | #ifndef HUGO_FIB_HEAP_H |
|---|
| 4 | #define HUGO_FIB_HEAP_H |
|---|
| [255] | 5 | |
|---|
| 6 | ///\file |
|---|
| 7 | ///\brief Fibonacci Heap implementation. |
|---|
| 8 | |
|---|
| 9 | #include <vector> |
|---|
| 10 | #include <functional> |
|---|
| 11 | #include <math.h> |
|---|
| 12 | |
|---|
| 13 | namespace hugo { |
|---|
| 14 | |
|---|
| [373] | 15 | /// An implementation of the Fibonacci Heap. |
|---|
| 16 | |
|---|
| 17 | /** |
|---|
| [387] | 18 | This class implements the \e Fibonacci \e heap data structure. A \e heap |
|---|
| 19 | is a data structure for storing items with specified values called \e |
|---|
| 20 | priorities, such that finding the item with minimum priority with respect |
|---|
| 21 | to \e Compare is efficient. In a heap one can change the priority of an |
|---|
| 22 | item, add or erase an item, etc. |
|---|
| [373] | 23 | |
|---|
| [387] | 24 | The methods \ref increase and \ref erase are not efficient in a Fibonacci |
|---|
| 25 | heap. In case of many calls to these operations, it is better to use a |
|---|
| 26 | \e binary \e heap. |
|---|
| [373] | 27 | |
|---|
| [387] | 28 | \param Item The type of the items to be stored. |
|---|
| 29 | \param Prio The type of the priority of the items. |
|---|
| 30 | \param ItemIntMap A read and writable Item int map, for the usage of |
|---|
| [373] | 31 | the heap. |
|---|
| [387] | 32 | \param Compare A class for the comparison of the priorities. The |
|---|
| [373] | 33 | default is \c std::less<Prio>. |
|---|
| 34 | |
|---|
| 35 | */ |
|---|
| 36 | |
|---|
| 37 | #ifdef DOXYGEN |
|---|
| 38 | template <typename Item, |
|---|
| 39 | typename Prio, |
|---|
| 40 | typename ItemIntMap, |
|---|
| 41 | typename Compare> |
|---|
| 42 | #else |
|---|
| 43 | template <typename Item, |
|---|
| 44 | typename Prio, |
|---|
| 45 | typename ItemIntMap, |
|---|
| [255] | 46 | typename Compare = std::less<Prio> > |
|---|
| [373] | 47 | #endif |
|---|
| [255] | 48 | class FibHeap { |
|---|
| [387] | 49 | public: |
|---|
| [255] | 50 | typedef Prio PrioType; |
|---|
| 51 | |
|---|
| [373] | 52 | private: |
|---|
| [255] | 53 | class store; |
|---|
| 54 | |
|---|
| 55 | std::vector<store> container; |
|---|
| 56 | int minimum; |
|---|
| 57 | ItemIntMap &iimap; |
|---|
| 58 | Compare comp; |
|---|
| 59 | int num_items; |
|---|
| [373] | 60 | |
|---|
| [255] | 61 | ///\todo It is use nowhere |
|---|
| 62 | ///\todo It doesn't conform to the naming conventions. |
|---|
| 63 | public: |
|---|
| 64 | enum state_enum { |
|---|
| 65 | IN_HEAP = 0, |
|---|
| 66 | PRE_HEAP = -1, |
|---|
| 67 | POST_HEAP = -2 |
|---|
| 68 | }; |
|---|
| 69 | |
|---|
| [373] | 70 | FibHeap(ItemIntMap &_iimap) : minimum(0), iimap(_iimap), num_items() {} |
|---|
| 71 | FibHeap(ItemIntMap &_iimap, const Compare &_comp) : minimum(0), |
|---|
| [255] | 72 | iimap(_iimap), comp(_comp), num_items() {} |
|---|
| 73 | |
|---|
| [373] | 74 | ///The number of items stored in the heap. |
|---|
| 75 | |
|---|
| 76 | /** |
|---|
| [387] | 77 | Returns the number of items stored in the heap. |
|---|
| [373] | 78 | */ |
|---|
| 79 | int size() const { return num_items; } |
|---|
| 80 | |
|---|
| 81 | ///Checks if the heap stores no items. |
|---|
| [255] | 82 | |
|---|
| [373] | 83 | /** |
|---|
| [387] | 84 | Returns \c true iff the heap stores no items. |
|---|
| [373] | 85 | */ |
|---|
| 86 | bool empty() const { return num_items==0; } |
|---|
| 87 | |
|---|
| [387] | 88 | ///\c item gets to the heap with priority \c value independently if \c item was already there. |
|---|
| [373] | 89 | |
|---|
| 90 | /** |
|---|
| [387] | 91 | This method calls \ref push(\c item, \c value) if \c item is not |
|---|
| 92 | stored in the heap and it calls \ref decrease(\c item, \c value) or |
|---|
| 93 | \ref increase(\c item, \c value) otherwise. |
|---|
| [373] | 94 | */ |
|---|
| [387] | 95 | void set (Item const item, PrioType const value); |
|---|
| [373] | 96 | |
|---|
| 97 | ///Adds \c item to the heap with priority \c value. |
|---|
| 98 | |
|---|
| 99 | /** |
|---|
| 100 | Adds \c item to the heap with priority \c value. |
|---|
| 101 | \pre \c item must not be stored in the heap. |
|---|
| 102 | */ |
|---|
| [387] | 103 | void push (Item const item, PrioType const value); |
|---|
| [373] | 104 | |
|---|
| 105 | |
|---|
| 106 | ///Returns the item having the minimum priority w.r.t. Compare. |
|---|
| 107 | |
|---|
| 108 | /** |
|---|
| 109 | This method returns the item having the minimum priority w.r.t. Compare. |
|---|
| 110 | \pre The heap must be nonempty. |
|---|
| 111 | */ |
|---|
| 112 | Item top() const { return container[minimum].name; } |
|---|
| 113 | |
|---|
| 114 | |
|---|
| 115 | ///Returns the minimum priority w.r.t. Compare. |
|---|
| 116 | |
|---|
| 117 | /** |
|---|
| 118 | It returns the minimum priority w.r.t. Compare. |
|---|
| 119 | \pre The heap must be nonempty. |
|---|
| 120 | */ |
|---|
| 121 | PrioType prio() const { return container[minimum].prio; } |
|---|
| 122 | |
|---|
| 123 | |
|---|
| 124 | ///Returns the priority of \c item. |
|---|
| 125 | |
|---|
| 126 | /** |
|---|
| 127 | It returns the priority of \c item. |
|---|
| 128 | \pre \c item must be in the heap. |
|---|
| 129 | */ |
|---|
| [387] | 130 | PrioType& operator[](const Item& item) { |
|---|
| 131 | return container[iimap[item]].prio; |
|---|
| 132 | } |
|---|
| [373] | 133 | |
|---|
| 134 | ///Returns the priority of \c item. |
|---|
| 135 | |
|---|
| 136 | /** |
|---|
| 137 | It returns the priority of \c item. |
|---|
| 138 | \pre \c item must be in the heap. |
|---|
| 139 | */ |
|---|
| [387] | 140 | const PrioType& operator[](const Item& item) const { |
|---|
| 141 | return container[iimap[item]].prio; |
|---|
| [255] | 142 | } |
|---|
| 143 | |
|---|
| 144 | |
|---|
| [373] | 145 | ///Deletes the item with minimum priority w.r.t. Compare. |
|---|
| [255] | 146 | |
|---|
| [373] | 147 | /** |
|---|
| 148 | This method deletes the item with minimum priority w.r.t. |
|---|
| 149 | Compare from the heap. |
|---|
| 150 | \pre The heap must be non-empty. |
|---|
| 151 | */ |
|---|
| 152 | void pop(); |
|---|
| 153 | |
|---|
| 154 | ///Deletes \c item from the heap. |
|---|
| 155 | |
|---|
| 156 | /** |
|---|
| 157 | This method deletes \c item from the heap, if \c item was already |
|---|
| 158 | stored in the heap. It is quite inefficient in Fibonacci heaps. |
|---|
| 159 | */ |
|---|
| [387] | 160 | void erase (const Item& item); |
|---|
| [373] | 161 | |
|---|
| 162 | ///Decreases the priority of \c item to \c value. |
|---|
| 163 | |
|---|
| 164 | /** |
|---|
| 165 | This method decreases the priority of \c item to \c value. |
|---|
| 166 | \pre \c item must be stored in the heap with priority at least \c |
|---|
| 167 | value w.r.t. Compare. |
|---|
| 168 | */ |
|---|
| [387] | 169 | void decrease (Item item, PrioType const value); |
|---|
| [373] | 170 | |
|---|
| 171 | |
|---|
| 172 | ///Increases the priority of \c item to \c value. |
|---|
| 173 | |
|---|
| 174 | /** |
|---|
| 175 | This method sets the priority of \c item to \c value. Though |
|---|
| 176 | there is no precondition on the priority of \c item, this |
|---|
| [387] | 177 | method should be used only if there is a need to really \e increase |
|---|
| [373] | 178 | (w.r.t. Compare) the priority of \c item, because this |
|---|
| 179 | method is inefficient. |
|---|
| 180 | */ |
|---|
| [387] | 181 | void increase (Item item, PrioType const value) { |
|---|
| 182 | erase(item); |
|---|
| 183 | push(item, value); |
|---|
| [373] | 184 | } |
|---|
| 185 | |
|---|
| 186 | |
|---|
| [387] | 187 | ///Tells if \c item is in, was already in, or has never been in the heap. |
|---|
| [373] | 188 | |
|---|
| 189 | /** |
|---|
| 190 | This method returns PRE_HEAP if \c item has never been in the |
|---|
| 191 | heap, IN_HEAP if it is in the heap at the moment, and POST_HEAP |
|---|
| 192 | otherwise. In the latter case it is possible that \c item will |
|---|
| 193 | get back to the heap again. |
|---|
| 194 | */ |
|---|
| [387] | 195 | state_enum state(const Item &item) const { |
|---|
| 196 | int i=iimap[item]; |
|---|
| 197 | if( i>=0 ) { |
|---|
| 198 | if ( container[i].in ) i=0; |
|---|
| 199 | else i=-2; |
|---|
| 200 | } |
|---|
| 201 | return state_enum(i); |
|---|
| 202 | } |
|---|
| 203 | |
|---|
| 204 | private: |
|---|
| 205 | |
|---|
| 206 | void balance(); |
|---|
| 207 | void makeroot(int c); |
|---|
| 208 | void cut(int a, int b); |
|---|
| 209 | void cascade(int a); |
|---|
| 210 | void fuse(int a, int b); |
|---|
| 211 | void unlace(int a); |
|---|
| [373] | 212 | |
|---|
| 213 | |
|---|
| [387] | 214 | class store { |
|---|
| 215 | friend class FibHeap; |
|---|
| 216 | |
|---|
| 217 | Item name; |
|---|
| 218 | int parent; |
|---|
| 219 | int left_neighbor; |
|---|
| 220 | int right_neighbor; |
|---|
| 221 | int child; |
|---|
| 222 | int degree; |
|---|
| 223 | bool marked; |
|---|
| 224 | bool in; |
|---|
| 225 | PrioType prio; |
|---|
| 226 | |
|---|
| 227 | store() : parent(-1), child(-1), degree(), marked(false), in(true) {} |
|---|
| 228 | }; |
|---|
| 229 | }; |
|---|
| 230 | |
|---|
| 231 | |
|---|
| [373] | 232 | |
|---|
| 233 | // ********************************************************************** |
|---|
| 234 | // IMPLEMENTATIONS |
|---|
| 235 | // ********************************************************************** |
|---|
| 236 | |
|---|
| [387] | 237 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 238 | typename Compare> |
|---|
| 239 | void FibHeap<Item, Prio, ItemIntMap, Compare>::set |
|---|
| 240 | (Item const item, PrioType const value) |
|---|
| 241 | { |
|---|
| 242 | int i=iimap[item]; |
|---|
| 243 | if ( i >= 0 && container[i].in ) { |
|---|
| 244 | if ( comp(value, container[i].prio) ) decrease(item, value); |
|---|
| 245 | if ( comp(container[i].prio, value) ) increase(item, value); |
|---|
| 246 | } else push(item, value); |
|---|
| 247 | } |
|---|
| [255] | 248 | |
|---|
| [387] | 249 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 250 | typename Compare> |
|---|
| 251 | void FibHeap<Item, Prio, ItemIntMap, Compare>::push |
|---|
| 252 | (Item const item, PrioType const value) { |
|---|
| 253 | int i=iimap[item]; |
|---|
| [255] | 254 | if ( i < 0 ) { |
|---|
| 255 | int s=container.size(); |
|---|
| [387] | 256 | iimap.set( item, s ); |
|---|
| [255] | 257 | store st; |
|---|
| [387] | 258 | st.name=item; |
|---|
| [255] | 259 | container.push_back(st); |
|---|
| 260 | i=s; |
|---|
| 261 | } else { |
|---|
| 262 | container[i].parent=container[i].child=-1; |
|---|
| 263 | container[i].degree=0; |
|---|
| 264 | container[i].in=true; |
|---|
| 265 | container[i].marked=false; |
|---|
| 266 | } |
|---|
| 267 | |
|---|
| 268 | if ( num_items ) { |
|---|
| 269 | container[container[minimum].right_neighbor].left_neighbor=i; |
|---|
| 270 | container[i].right_neighbor=container[minimum].right_neighbor; |
|---|
| 271 | container[minimum].right_neighbor=i; |
|---|
| 272 | container[i].left_neighbor=minimum; |
|---|
| 273 | if ( comp( value, container[minimum].prio) ) minimum=i; |
|---|
| 274 | } else { |
|---|
| 275 | container[i].right_neighbor=container[i].left_neighbor=i; |
|---|
| 276 | minimum=i; |
|---|
| 277 | } |
|---|
| 278 | container[i].prio=value; |
|---|
| 279 | ++num_items; |
|---|
| 280 | } |
|---|
| 281 | |
|---|
| [387] | 282 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 283 | typename Compare> |
|---|
| 284 | void FibHeap<Item, Prio, ItemIntMap, Compare>::pop() { |
|---|
| [255] | 285 | /*The first case is that there are only one root.*/ |
|---|
| 286 | if ( container[minimum].left_neighbor==minimum ) { |
|---|
| 287 | container[minimum].in=false; |
|---|
| 288 | if ( container[minimum].degree!=0 ) { |
|---|
| 289 | makeroot(container[minimum].child); |
|---|
| 290 | minimum=container[minimum].child; |
|---|
| 291 | balance(); |
|---|
| 292 | } |
|---|
| 293 | } else { |
|---|
| 294 | int right=container[minimum].right_neighbor; |
|---|
| 295 | unlace(minimum); |
|---|
| 296 | container[minimum].in=false; |
|---|
| 297 | if ( container[minimum].degree > 0 ) { |
|---|
| 298 | int left=container[minimum].left_neighbor; |
|---|
| 299 | int child=container[minimum].child; |
|---|
| 300 | int last_child=container[child].left_neighbor; |
|---|
| 301 | |
|---|
| 302 | makeroot(child); |
|---|
| 303 | |
|---|
| 304 | container[left].right_neighbor=child; |
|---|
| 305 | container[child].left_neighbor=left; |
|---|
| 306 | container[right].left_neighbor=last_child; |
|---|
| 307 | container[last_child].right_neighbor=right; |
|---|
| 308 | } |
|---|
| 309 | minimum=right; |
|---|
| 310 | balance(); |
|---|
| 311 | } // the case where there are more roots |
|---|
| 312 | --num_items; |
|---|
| 313 | } |
|---|
| 314 | |
|---|
| [387] | 315 | |
|---|
| 316 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 317 | typename Compare> |
|---|
| 318 | void FibHeap<Item, Prio, ItemIntMap, Compare>::erase |
|---|
| 319 | (const Item& item) { |
|---|
| 320 | int i=iimap[item]; |
|---|
| [255] | 321 | |
|---|
| 322 | if ( i >= 0 && container[i].in ) { |
|---|
| 323 | if ( container[i].parent!=-1 ) { |
|---|
| 324 | int p=container[i].parent; |
|---|
| 325 | cut(i,p); |
|---|
| 326 | cascade(p); |
|---|
| 327 | } |
|---|
| 328 | minimum=i; //As if its prio would be -infinity |
|---|
| 329 | pop(); |
|---|
| 330 | } |
|---|
| [387] | 331 | } |
|---|
| [255] | 332 | |
|---|
| [387] | 333 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 334 | typename Compare> |
|---|
| 335 | void FibHeap<Item, Prio, ItemIntMap, Compare>::decrease |
|---|
| 336 | (Item item, PrioType const value) { |
|---|
| 337 | int i=iimap[item]; |
|---|
| [255] | 338 | container[i].prio=value; |
|---|
| 339 | int p=container[i].parent; |
|---|
| 340 | |
|---|
| 341 | if ( p!=-1 && comp(value, container[p].prio) ) { |
|---|
| 342 | cut(i,p); |
|---|
| 343 | cascade(p); |
|---|
| 344 | } |
|---|
| 345 | if ( comp(value, container[minimum].prio) ) minimum=i; |
|---|
| [387] | 346 | } |
|---|
| 347 | |
|---|
| [255] | 348 | |
|---|
| [387] | 349 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 350 | typename Compare> |
|---|
| 351 | void FibHeap<Item, Prio, ItemIntMap, Compare>::balance() { |
|---|
| [255] | 352 | |
|---|
| 353 | int maxdeg=int( floor( 2.08*log(double(container.size()))))+1; |
|---|
| 354 | |
|---|
| 355 | std::vector<int> A(maxdeg,-1); |
|---|
| 356 | |
|---|
| 357 | /* |
|---|
| 358 | *Recall that now minimum does not point to the minimum prio element. |
|---|
| 359 | *We set minimum to this during balance(). |
|---|
| 360 | */ |
|---|
| 361 | int anchor=container[minimum].left_neighbor; |
|---|
| 362 | int next=minimum; |
|---|
| 363 | bool end=false; |
|---|
| 364 | |
|---|
| 365 | do { |
|---|
| 366 | int active=next; |
|---|
| 367 | if ( anchor==active ) end=true; |
|---|
| 368 | int d=container[active].degree; |
|---|
| 369 | next=container[active].right_neighbor; |
|---|
| 370 | |
|---|
| 371 | while (A[d]!=-1) { |
|---|
| 372 | if( comp(container[active].prio, container[A[d]].prio) ) { |
|---|
| 373 | fuse(active,A[d]); |
|---|
| 374 | } else { |
|---|
| 375 | fuse(A[d],active); |
|---|
| 376 | active=A[d]; |
|---|
| 377 | } |
|---|
| 378 | A[d]=-1; |
|---|
| 379 | ++d; |
|---|
| 380 | } |
|---|
| 381 | A[d]=active; |
|---|
| 382 | } while ( !end ); |
|---|
| 383 | |
|---|
| 384 | |
|---|
| 385 | while ( container[minimum].parent >=0 ) minimum=container[minimum].parent; |
|---|
| 386 | int s=minimum; |
|---|
| 387 | int m=minimum; |
|---|
| 388 | do { |
|---|
| 389 | if ( comp(container[s].prio, container[minimum].prio) ) minimum=s; |
|---|
| 390 | s=container[s].right_neighbor; |
|---|
| 391 | } while ( s != m ); |
|---|
| 392 | } |
|---|
| 393 | |
|---|
| [387] | 394 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 395 | typename Compare> |
|---|
| 396 | void FibHeap<Item, Prio, ItemIntMap, Compare>::makeroot |
|---|
| 397 | (int c) { |
|---|
| [255] | 398 | int s=c; |
|---|
| 399 | do { |
|---|
| 400 | container[s].parent=-1; |
|---|
| 401 | s=container[s].right_neighbor; |
|---|
| 402 | } while ( s != c ); |
|---|
| 403 | } |
|---|
| [387] | 404 | |
|---|
| 405 | |
|---|
| 406 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 407 | typename Compare> |
|---|
| 408 | void FibHeap<Item, Prio, ItemIntMap, Compare>::cut |
|---|
| 409 | (int a, int b) { |
|---|
| 410 | /* |
|---|
| 411 | *Replacing a from the children of b. |
|---|
| 412 | */ |
|---|
| 413 | --container[b].degree; |
|---|
| [255] | 414 | |
|---|
| [387] | 415 | if ( container[b].degree !=0 ) { |
|---|
| 416 | int child=container[b].child; |
|---|
| 417 | if ( child==a ) |
|---|
| 418 | container[b].child=container[child].right_neighbor; |
|---|
| 419 | unlace(a); |
|---|
| 420 | } |
|---|
| 421 | |
|---|
| 422 | |
|---|
| 423 | /*Lacing a to the roots.*/ |
|---|
| 424 | int right=container[minimum].right_neighbor; |
|---|
| 425 | container[minimum].right_neighbor=a; |
|---|
| 426 | container[a].left_neighbor=minimum; |
|---|
| 427 | container[a].right_neighbor=right; |
|---|
| 428 | container[right].left_neighbor=a; |
|---|
| 429 | |
|---|
| 430 | container[a].parent=-1; |
|---|
| 431 | container[a].marked=false; |
|---|
| 432 | } |
|---|
| 433 | |
|---|
| [255] | 434 | |
|---|
| [387] | 435 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 436 | typename Compare> |
|---|
| 437 | void FibHeap<Item, Prio, ItemIntMap, Compare>::cascade |
|---|
| 438 | (int a) |
|---|
| [255] | 439 | { |
|---|
| 440 | if ( container[a].parent!=-1 ) { |
|---|
| 441 | int p=container[a].parent; |
|---|
| 442 | |
|---|
| 443 | if ( container[a].marked==false ) container[a].marked=true; |
|---|
| 444 | else { |
|---|
| 445 | cut(a,p); |
|---|
| 446 | cascade(p); |
|---|
| 447 | } |
|---|
| 448 | } |
|---|
| 449 | } |
|---|
| 450 | |
|---|
| 451 | |
|---|
| [387] | 452 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 453 | typename Compare> |
|---|
| 454 | void FibHeap<Item, Prio, ItemIntMap, Compare>::fuse |
|---|
| 455 | (int a, int b) { |
|---|
| [255] | 456 | unlace(b); |
|---|
| 457 | |
|---|
| 458 | /*Lacing b under a.*/ |
|---|
| 459 | container[b].parent=a; |
|---|
| 460 | |
|---|
| 461 | if (container[a].degree==0) { |
|---|
| 462 | container[b].left_neighbor=b; |
|---|
| 463 | container[b].right_neighbor=b; |
|---|
| 464 | container[a].child=b; |
|---|
| 465 | } else { |
|---|
| 466 | int child=container[a].child; |
|---|
| 467 | int last_child=container[child].left_neighbor; |
|---|
| 468 | container[child].left_neighbor=b; |
|---|
| 469 | container[b].right_neighbor=child; |
|---|
| 470 | container[last_child].right_neighbor=b; |
|---|
| 471 | container[b].left_neighbor=last_child; |
|---|
| 472 | } |
|---|
| 473 | |
|---|
| 474 | ++container[a].degree; |
|---|
| 475 | |
|---|
| 476 | container[b].marked=false; |
|---|
| 477 | } |
|---|
| 478 | |
|---|
| [387] | 479 | |
|---|
| 480 | /* |
|---|
| 481 | *It is invoked only if a has siblings. |
|---|
| 482 | */ |
|---|
| 483 | template <typename Item, typename Prio, typename ItemIntMap, |
|---|
| 484 | typename Compare> |
|---|
| 485 | void FibHeap<Item, Prio, ItemIntMap, Compare>::unlace |
|---|
| 486 | (int a) { |
|---|
| [255] | 487 | int leftn=container[a].left_neighbor; |
|---|
| 488 | int rightn=container[a].right_neighbor; |
|---|
| 489 | container[leftn].right_neighbor=rightn; |
|---|
| 490 | container[rightn].left_neighbor=leftn; |
|---|
| [387] | 491 | } |
|---|
| [255] | 492 | |
|---|
| 493 | } //namespace hugo |
|---|
| 494 | #endif |
|---|