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