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