~ubuntu-branches/ubuntu/lucid/igraph/lucid

« back to all changes in this revision

Viewing changes to src/bliss_heap.hh

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Malaterre
  • Date: 2009-11-16 18:12:42 UTC
  • Revision ID: james.westby@ubuntu.com-20091116181242-mzv9p5fz9uj57xd1
Tags: upstream-0.5.3
ImportĀ upstreamĀ versionĀ 0.5.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (C) 2003-2006 Tommi Junttila
 
3
 
 
4
 This program is free software; you can redistribute it and/or modify
 
5
 it under the terms of the GNU General Public License version 2
 
6
 as published by the Free Software Foundation.
 
7
 
 
8
 This program is distributed in the hope that it will be useful,
 
9
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 GNU General Public License for more details.
 
12
 
 
13
 You should have received a copy of the GNU General Public License
 
14
 along with this program; if not, write to the Free Software
 
15
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
16
*/
 
17
 
 
18
/* FSF address fixed in the above notice on 1 Oct 2009 by Tamas Nepusz */
 
19
 
 
20
#ifndef BLISS_HEAP_HH
 
21
#define BLISS_HEAP_HH
 
22
 
 
23
namespace igraph {
 
24
 
 
25
class Heap
 
26
{
 
27
#if defined(CONSISTENCY_CHECKS)
 
28
  unsigned int N;
 
29
#endif
 
30
  unsigned int n;
 
31
  unsigned int *array;
 
32
  void upheap(unsigned int k);
 
33
  void downheap(unsigned int k);
 
34
public:
 
35
  Heap() {array = 0; n = 0; }
 
36
  ~Heap();
 
37
  void init(unsigned int size);
 
38
 
 
39
  bool is_empty() const {return(n==0); }
 
40
  void clear() {n = 0;}
 
41
  void insert(unsigned int v);
 
42
  unsigned int remove();
 
43
};
 
44
 
 
45
}
 
46
 
 
47
#endif