lemon/linear_heap.h
author deba
Wed, 02 Nov 2005 15:26:04 +0000
changeset 1753 98d83dd56c1d
child 1758 4bfe670710e0
permissions -rw-r--r--
Some change on the clear
deba@1724
     1
/* -*- C++ -*-
deba@1724
     2
 * lemon/linear_heap.h - Part of LEMON, a generic C++ optimization library
deba@1724
     3
 *
deba@1724
     4
 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
deba@1724
     5
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
deba@1724
     6
 *
deba@1724
     7
 * Permission to use, modify and distribute this software is granted
deba@1724
     8
 * provided that this copyright notice appears in all copies. For
deba@1724
     9
 * precise terms see the accompanying LICENSE file.
deba@1724
    10
 *
deba@1724
    11
 * This software is provided "AS IS" with no warranty of any kind,
deba@1724
    12
 * express or implied, and with no claim as to its suitability for any
deba@1724
    13
 * purpose.
deba@1724
    14
 *
deba@1724
    15
 */
deba@1724
    16
deba@1724
    17
#ifndef LEMON_LINEAR_HEAP_H
deba@1724
    18
#define LEMON_LINEAR_HEAP_H
deba@1724
    19
deba@1724
    20
///\ingroup auxdat
deba@1724
    21
///\file
deba@1724
    22
///\brief Binary Heap implementation.
deba@1724
    23
deba@1724
    24
#include <vector>
deba@1724
    25
#include <utility>
deba@1724
    26
#include <functional>
deba@1724
    27
deba@1724
    28
namespace lemon {
deba@1724
    29
deba@1724
    30
  /// \addtogroup auxdat
deba@1724
    31
  /// @{
deba@1724
    32
deba@1724
    33
  /// \brief A Linear Heap implementation.
deba@1724
    34
  ///
deba@1724
    35
  /// This class implements the \e linear \e heap data structure. A \e heap
deba@1724
    36
  /// is a data structure for storing items with specified values called \e
deba@1724
    37
  /// priorities in such a way that finding the item with minimum priority is
deba@1724
    38
  /// efficient. The linear heap is very simple implementation, it can store
deba@1724
    39
  /// only integer priorities and it stores for each priority in the [0..C]
deba@1724
    40
  /// range a list of items. So it should be used only when the priorities
deba@1724
    41
  /// are small. It is not intended to use as dijkstra heap.
deba@1724
    42
  ///
deba@1724
    43
  /// \param _Item Type of the items to be stored.  
deba@1724
    44
  /// \param _ItemIntMap A read and writable Item int map, used internally
deba@1724
    45
  /// to handle the cross references.
deba@1724
    46
  /// \param minimize If the given parameter is true then the heap gives back
deba@1724
    47
  /// the lowest priority. 
deba@1724
    48
  template <typename _Item, typename _ItemIntMap, bool minimize = true >
deba@1724
    49
  class LinearHeap {
deba@1724
    50
deba@1724
    51
  public:
deba@1724
    52
    typedef _Item Item;
deba@1724
    53
    typedef int Prio;
deba@1724
    54
    typedef std::pair<Item, Prio> Pair;
deba@1724
    55
    typedef _ItemIntMap ItemIntMap;
deba@1724
    56
deba@1724
    57
    /// \brief Type to represent the items states.
deba@1724
    58
    ///
deba@1724
    59
    /// Each Item element have a state associated to it. It may be "in heap",
deba@1724
    60
    /// "pre heap" or "post heap". The latter two are indifferent from the
deba@1724
    61
    /// heap's point of view, but may be useful to the user.
deba@1724
    62
    ///
deba@1724
    63
    /// The ItemIntMap \e should be initialized in such way that it maps
deba@1724
    64
    /// PRE_HEAP (-1) to any element to be put in the heap...
deba@1724
    65
    enum state_enum {
deba@1724
    66
      IN_HEAP = 0,
deba@1724
    67
      PRE_HEAP = -1,
deba@1724
    68
      POST_HEAP = -2
deba@1724
    69
    };
deba@1724
    70
deba@1724
    71
  public:
deba@1724
    72
    /// \brief The constructor.
deba@1724
    73
    ///
deba@1724
    74
    /// The constructor.
deba@1724
    75
    /// \param _index should be given to the constructor, since it is used
deba@1724
    76
    /// internally to handle the cross references. The value of the map
deba@1724
    77
    /// should be PRE_HEAP (-1) for each element.
deba@1724
    78
    explicit LinearHeap(ItemIntMap &_index) : index(_index), minimal(0) {}
deba@1724
    79
    
deba@1724
    80
    /// The number of items stored in the heap.
deba@1724
    81
    ///
deba@1724
    82
    /// \brief Returns the number of items stored in the heap.
deba@1724
    83
    int size() const { return data.size(); }
deba@1724
    84
    
deba@1724
    85
    /// \brief Checks if the heap stores no items.
deba@1724
    86
    ///
deba@1724
    87
    /// Returns \c true if and only if the heap stores no items.
deba@1724
    88
    bool empty() const { return data.empty(); }
deba@1724
    89
deba@1724
    90
    /// \brief Make empty this heap.
deba@1724
    91
    /// 
deba@1724
    92
    /// Make empty this heap.
deba@1724
    93
    void clear() { 
deba@1724
    94
      for (int i = 0; i < (int)data.size(); ++i) {
deba@1724
    95
	index[data[i].item] = -2;
deba@1724
    96
      }
deba@1724
    97
      data.clear(); first.clear(); minimal = 0;
deba@1724
    98
    }
deba@1724
    99
deba@1724
   100
  private:
deba@1724
   101
deba@1724
   102
    void relocate_last(int idx) {
deba@1724
   103
      if (idx + 1 < (int)data.size()) {
deba@1724
   104
	data[idx] = data.back();
deba@1724
   105
	if (data[idx].prev != -1) {
deba@1724
   106
	  data[data[idx].prev].next = idx;
deba@1724
   107
	} else {
deba@1724
   108
	  first[data[idx].value] = idx;
deba@1724
   109
	}
deba@1724
   110
	if (data[idx].next != -1) {
deba@1724
   111
	  data[data[idx].next].prev = idx;
deba@1724
   112
	}
deba@1724
   113
	index[data[idx].item] = idx;
deba@1724
   114
      }
deba@1724
   115
      data.pop_back();
deba@1724
   116
    }
deba@1724
   117
deba@1724
   118
    void unlace(int idx) {
deba@1724
   119
      if (data[idx].prev != -1) {
deba@1724
   120
	data[data[idx].prev].next = data[idx].next;
deba@1724
   121
      } else {
deba@1724
   122
	first[data[idx].value] = data[idx].next;
deba@1724
   123
      }
deba@1724
   124
      if (data[idx].next != -1) {
deba@1724
   125
	data[data[idx].next].prev = data[idx].prev;
deba@1724
   126
      }
deba@1724
   127
    }
deba@1724
   128
deba@1724
   129
    void lace(int idx) {
deba@1724
   130
      if ((int)first.size() <= data[idx].value) {
deba@1724
   131
	first.resize(data[idx].value + 1, -1);
deba@1724
   132
      }
deba@1724
   133
      data[idx].next = first[data[idx].value];
deba@1724
   134
      if (data[idx].next != -1) {
deba@1724
   135
	data[data[idx].next].prev = idx;
deba@1724
   136
      }
deba@1724
   137
      first[data[idx].value] = idx;
deba@1724
   138
      data[idx].prev = -1;
deba@1724
   139
    }
deba@1724
   140
deba@1724
   141
  public:
deba@1724
   142
    /// \brief Insert a pair of item and priority into the heap.
deba@1724
   143
    ///
deba@1724
   144
    /// Adds \c p.first to the heap with priority \c p.second.
deba@1724
   145
    /// \param p The pair to insert.
deba@1724
   146
    void push(const Pair& p) {
deba@1724
   147
      push(p.first, p.second);
deba@1724
   148
    }
deba@1724
   149
deba@1724
   150
    /// \brief Insert an item into the heap with the given priority.
deba@1724
   151
    ///    
deba@1724
   152
    /// Adds \c i to the heap with priority \c p. 
deba@1724
   153
    /// \param i The item to insert.
deba@1724
   154
    /// \param p The priority of the item.
deba@1724
   155
    void push(const Item &i, const Prio &p) { 
deba@1724
   156
      int idx = data.size();
deba@1724
   157
      index[i] = idx;
deba@1724
   158
      data.push_back(LinearItem(i, p));
deba@1724
   159
      lace(idx);
deba@1724
   160
      if (p < minimal) {
deba@1724
   161
	minimal = p;
deba@1724
   162
      }
deba@1724
   163
    }
deba@1724
   164
deba@1724
   165
    /// \brief Returns the item with minimum priority relative to \c Compare.
deba@1724
   166
    ///
deba@1724
   167
    /// This method returns the item with minimum priority relative to \c
deba@1724
   168
    /// Compare.  
deba@1724
   169
    /// \pre The heap must be nonempty.  
deba@1724
   170
    Item top() const {
deba@1724
   171
      while (first[minimal] == -1) {
deba@1724
   172
	++minimal;
deba@1724
   173
      }
deba@1724
   174
      return data[first[minimal]].item;
deba@1724
   175
    }
deba@1724
   176
deba@1724
   177
    /// \brief Returns the minimum priority relative to \c Compare.
deba@1724
   178
    ///
deba@1724
   179
    /// It returns the minimum priority relative to \c Compare.
deba@1724
   180
    /// \pre The heap must be nonempty.
deba@1724
   181
    Prio prio() const {
deba@1724
   182
      while (first[minimal] == -1) {
deba@1724
   183
	++minimal;
deba@1724
   184
      }
deba@1724
   185
      return minimal;
deba@1724
   186
    }
deba@1724
   187
deba@1724
   188
    /// \brief Deletes the item with minimum priority relative to \c Compare.
deba@1724
   189
    ///
deba@1724
   190
    /// This method deletes the item with minimum priority relative to \c
deba@1724
   191
    /// Compare from the heap.  
deba@1724
   192
    /// \pre The heap must be non-empty.  
deba@1724
   193
    void pop() {
deba@1724
   194
      while (first[minimal] == -1) {
deba@1724
   195
	++minimal;
deba@1724
   196
      }
deba@1724
   197
      int idx = first[minimal];
deba@1724
   198
      index[data[idx].item] = -2;
deba@1724
   199
      unlace(idx);
deba@1724
   200
      relocate_last(idx);
deba@1724
   201
    }
deba@1724
   202
deba@1724
   203
    /// \brief Deletes \c i from the heap.
deba@1724
   204
    ///
deba@1724
   205
    /// This method deletes item \c i from the heap, if \c i was
deba@1724
   206
    /// already stored in the heap.
deba@1724
   207
    /// \param i The item to erase. 
deba@1724
   208
    void erase(const Item &i) {
deba@1724
   209
      int idx = index[i];
deba@1724
   210
      index[data[idx].item] = -2;
deba@1724
   211
      unlace(idx);
deba@1724
   212
      relocate_last(idx);
deba@1724
   213
    }
deba@1724
   214
deba@1724
   215
    
deba@1724
   216
    /// \brief Returns the priority of \c i.
deba@1724
   217
    ///
deba@1724
   218
    /// This function returns the priority of item \c i.  
deba@1724
   219
    /// \pre \c i must be in the heap.
deba@1724
   220
    /// \param i The item.
deba@1724
   221
    Prio operator[](const Item &i) const {
deba@1724
   222
      int idx = index[i];
deba@1724
   223
      return data[idx].value;
deba@1724
   224
    }
deba@1724
   225
deba@1724
   226
    /// \brief \c i gets to the heap with priority \c p independently 
deba@1724
   227
    /// if \c i was already there.
deba@1724
   228
    ///
deba@1724
   229
    /// This method calls \ref push(\c i, \c p) if \c i is not stored
deba@1724
   230
    /// in the heap and sets the priority of \c i to \c p otherwise.
deba@1724
   231
    /// \param i The item.
deba@1724
   232
    /// \param p The priority.
deba@1724
   233
    void set(const Item &i, const Prio &p) {
deba@1724
   234
      int idx = index[i];
deba@1724
   235
      if (idx < 0) {
deba@1724
   236
	push(i,p);
deba@1724
   237
      } else if (p > data[idx].value) {
deba@1724
   238
	increase(i, p);
deba@1724
   239
      } else {
deba@1724
   240
	decrease(i, p);
deba@1724
   241
      }
deba@1724
   242
    }
deba@1724
   243
deba@1724
   244
    /// \brief Decreases the priority of \c i to \c p.
deba@1724
   245
deba@1724
   246
    /// This method decreases the priority of item \c i to \c p.
deba@1724
   247
    /// \pre \c i must be stored in the heap with priority at least \c
deba@1724
   248
    /// p relative to \c Compare.
deba@1724
   249
    /// \param i The item.
deba@1724
   250
    /// \param p The priority.
deba@1724
   251
    void decrease(const Item &i, const Prio &p) {
deba@1724
   252
      int idx = index[i];
deba@1724
   253
      unlace(idx);
deba@1724
   254
      data[idx].value = p;
deba@1724
   255
      if (p < minimal) {
deba@1724
   256
	minimal = p;
deba@1724
   257
      }
deba@1724
   258
      lace(idx);
deba@1724
   259
    }
deba@1724
   260
    
deba@1724
   261
    /// \brief Increases the priority of \c i to \c p.
deba@1724
   262
    ///
deba@1724
   263
    /// This method sets the priority of item \c i to \c p. 
deba@1724
   264
    /// \pre \c i must be stored in the heap with priority at most \c
deba@1724
   265
    /// p relative to \c Compare.
deba@1724
   266
    /// \param i The item.
deba@1724
   267
    /// \param p The priority.
deba@1724
   268
    void increase(const Item &i, const Prio &p) {
deba@1724
   269
      int idx = index[i];
deba@1724
   270
      unlace(idx);
deba@1724
   271
      data[idx].value = p;
deba@1724
   272
      lace(idx);
deba@1724
   273
    }
deba@1724
   274
deba@1724
   275
    /// \brief Returns if \c item is in, has already been in, or has 
deba@1724
   276
    /// never been in the heap.
deba@1724
   277
    ///
deba@1724
   278
    /// This method returns PRE_HEAP if \c item has never been in the
deba@1724
   279
    /// heap, IN_HEAP if it is in the heap at the moment, and POST_HEAP
deba@1724
   280
    /// otherwise. In the latter case it is possible that \c item will
deba@1724
   281
    /// get back to the heap again.
deba@1724
   282
    /// \param i The item.
deba@1724
   283
    state_enum state(const Item &i) const {
deba@1724
   284
      int idx = index[i];
deba@1724
   285
      if (idx >= 0) idx = 0;
deba@1724
   286
      return state_enum(idx);
deba@1724
   287
    }
deba@1724
   288
deba@1724
   289
  private:
deba@1724
   290
deba@1724
   291
    struct LinearItem {
deba@1724
   292
      LinearItem(const Item& _item, int _value) 
deba@1724
   293
	: item(_item), value(_value) {}
deba@1724
   294
deba@1724
   295
      Item item;
deba@1724
   296
      int value;
deba@1724
   297
deba@1724
   298
      int prev, next;
deba@1724
   299
    };
deba@1724
   300
deba@1724
   301
    ItemIntMap& index;
deba@1724
   302
    std::vector<int> first;
deba@1724
   303
    std::vector<LinearItem> data;
deba@1724
   304
    mutable int minimal;
deba@1724
   305
deba@1724
   306
  }; // class LinearHeap
deba@1724
   307
deba@1724
   308
deba@1724
   309
  template <typename _Item, typename _ItemIntMap>
deba@1724
   310
  class LinearHeap<_Item, _ItemIntMap, false> {
deba@1724
   311
deba@1724
   312
  public:
deba@1724
   313
    typedef _Item Item;
deba@1724
   314
    typedef int Prio;
deba@1724
   315
    typedef std::pair<Item, Prio> Pair;
deba@1724
   316
    typedef _ItemIntMap ItemIntMap;
deba@1724
   317
deba@1724
   318
    enum state_enum {
deba@1724
   319
      IN_HEAP = 0,
deba@1724
   320
      PRE_HEAP = -1,
deba@1724
   321
      POST_HEAP = -2
deba@1724
   322
    };
deba@1724
   323
deba@1724
   324
  public:
deba@1724
   325
deba@1724
   326
    explicit LinearHeap(ItemIntMap &_index) : index(_index), maximal(-1) {}
deba@1724
   327
deba@1724
   328
    int size() const { return data.size(); }
deba@1724
   329
    bool empty() const { return data.empty(); }
deba@1724
   330
deba@1724
   331
    void clear() { 
deba@1724
   332
      for (int i = 0; i < (int)data.size(); ++i) {
deba@1724
   333
	index[data[i].item] = -2;
deba@1724
   334
      }
deba@1724
   335
      data.clear(); first.clear(); maximal = -1; 
deba@1724
   336
    }
deba@1724
   337
deba@1724
   338
  private:
deba@1724
   339
deba@1724
   340
    void relocate_last(int idx) {
deba@1724
   341
      if (idx + 1 != (int)data.size()) {
deba@1724
   342
	data[idx] = data.back();
deba@1724
   343
	if (data[idx].prev != -1) {
deba@1724
   344
	  data[data[idx].prev].next = idx;
deba@1724
   345
	} else {
deba@1724
   346
	  first[data[idx].value] = idx;
deba@1724
   347
	}
deba@1724
   348
	if (data[idx].next != -1) {
deba@1724
   349
	  data[data[idx].next].prev = idx;
deba@1724
   350
	}
deba@1724
   351
	index[data[idx].item] = idx;
deba@1724
   352
      }
deba@1724
   353
      data.pop_back();
deba@1724
   354
    }
deba@1724
   355
deba@1724
   356
    void unlace(int idx) {
deba@1724
   357
      if (data[idx].prev != -1) {
deba@1724
   358
	data[data[idx].prev].next = data[idx].next;
deba@1724
   359
      } else {
deba@1724
   360
	first[data[idx].value] = data[idx].next;
deba@1724
   361
      }
deba@1724
   362
      if (data[idx].next != -1) {
deba@1724
   363
	data[data[idx].next].prev = data[idx].prev;
deba@1724
   364
      }
deba@1724
   365
    }
deba@1724
   366
deba@1724
   367
    void lace(int idx) {
deba@1724
   368
      if ((int)first.size() <= data[idx].value) {
deba@1724
   369
	first.resize(data[idx].value + 1, -1);
deba@1724
   370
      }
deba@1724
   371
      data[idx].next = first[data[idx].value];
deba@1724
   372
      if (data[idx].next != -1) {
deba@1724
   373
	data[data[idx].next].prev = idx;
deba@1724
   374
      }
deba@1724
   375
      first[data[idx].value] = idx;
deba@1724
   376
      data[idx].prev = -1;
deba@1724
   377
    }
deba@1724
   378
deba@1724
   379
  public:
deba@1724
   380
deba@1724
   381
    void push(const Pair& p) {
deba@1724
   382
      push(p.first, p.second);
deba@1724
   383
    }
deba@1724
   384
deba@1724
   385
    void push(const Item &i, const Prio &p) { 
deba@1724
   386
      int idx = data.size();
deba@1724
   387
      index[i] = idx;
deba@1724
   388
      data.push_back(LinearItem(i, p));
deba@1724
   389
      lace(idx);
deba@1724
   390
      if (data[idx].value > maximal) {
deba@1724
   391
	maximal = data[idx].value;
deba@1724
   392
      }
deba@1724
   393
    }
deba@1724
   394
deba@1724
   395
    Item top() const {
deba@1724
   396
      while (first[maximal] == -1) {
deba@1724
   397
	--maximal;
deba@1724
   398
      }
deba@1724
   399
      return data[first[maximal]].item;
deba@1724
   400
    }
deba@1724
   401
deba@1724
   402
    Prio prio() const {
deba@1724
   403
      while (first[maximal] == -1) {
deba@1724
   404
	--maximal;
deba@1724
   405
      }
deba@1724
   406
      return maximal;
deba@1724
   407
    }
deba@1724
   408
deba@1724
   409
    void pop() {
deba@1724
   410
      while (first[maximal] == -1) {
deba@1724
   411
	--maximal;
deba@1724
   412
      }
deba@1724
   413
      int idx = first[maximal];
deba@1724
   414
      index[data[idx].item] = -2;
deba@1724
   415
      unlace(idx);
deba@1724
   416
      relocate_last(idx);
deba@1724
   417
    }
deba@1724
   418
deba@1724
   419
    void erase(const Item &i) {
deba@1724
   420
      int idx = index[i];
deba@1724
   421
      index[data[idx].item] = -2;
deba@1724
   422
      unlace(idx);
deba@1724
   423
      relocate_last(idx);
deba@1724
   424
    }
deba@1724
   425
deba@1724
   426
    Prio operator[](const Item &i) const {
deba@1724
   427
      int idx = index[i];
deba@1724
   428
      return data[idx].value;
deba@1724
   429
    }
deba@1724
   430
deba@1724
   431
    void set(const Item &i, const Prio &p) {
deba@1724
   432
      int idx = index[i];
deba@1724
   433
      if (idx < 0) {
deba@1724
   434
	push(i,p);
deba@1724
   435
      } else if (p > data[idx].value) {
deba@1724
   436
	decrease(i, p);
deba@1724
   437
      } else {
deba@1724
   438
	increase(i, p);
deba@1724
   439
      }
deba@1724
   440
    }
deba@1724
   441
deba@1724
   442
    void decrease(const Item &i, const Prio &p) {
deba@1724
   443
      int idx = index[i];
deba@1724
   444
      unlace(idx);
deba@1724
   445
      data[idx].value = p;
deba@1724
   446
      if (p > maximal) {
deba@1724
   447
	maximal = p;
deba@1724
   448
      }
deba@1724
   449
      lace(idx);
deba@1724
   450
    }
deba@1724
   451
    
deba@1724
   452
    void increase(const Item &i, const Prio &p) {
deba@1724
   453
      int idx = index[i];
deba@1724
   454
      unlace(idx);
deba@1724
   455
      data[idx].value = p;
deba@1724
   456
      lace(idx);
deba@1724
   457
    }
deba@1724
   458
deba@1724
   459
    state_enum state(const Item &i) const {
deba@1724
   460
      int idx = index[i];
deba@1724
   461
      if (idx >= 0) idx = 0;
deba@1724
   462
      return state_enum(idx);
deba@1724
   463
    }
deba@1724
   464
deba@1724
   465
  private:
deba@1724
   466
deba@1724
   467
    struct LinearItem {
deba@1724
   468
      LinearItem(const Item& _item, int _value) 
deba@1724
   469
	: item(_item), value(_value) {}
deba@1724
   470
deba@1724
   471
      Item item;
deba@1724
   472
      int value;
deba@1724
   473
deba@1724
   474
      int prev, next;
deba@1724
   475
    };
deba@1724
   476
deba@1724
   477
    ItemIntMap& index;
deba@1724
   478
    std::vector<int> first;
deba@1724
   479
    std::vector<LinearItem> data;
deba@1724
   480
    mutable int maximal;
deba@1724
   481
deba@1724
   482
  }; // class LinearHeap
deba@1724
   483
deba@1724
   484
}
deba@1724
   485
  
deba@1724
   486
#endif