QGIS API Documentation  3.26.3-Buenos Aires (65e4edfdad)
priorityqueue.h
Go to the documentation of this file.
1 /*
2  * libpal - Automated Placement of Labels Library
3  *
4  * Copyright (C) 2008 Maxence Laurent, MIS-TIC, HEIG-VD
5  * University of Applied Sciences, Western Switzerland
6  * http://www.hes-so.ch
7  *
8  * Contact:
9  * maxence.laurent <at> heig-vd <dot> ch
10  * or
11  * eric.taillard <at> heig-vd <dot> ch
12  *
13  * This file is part of libpal.
14  *
15  * libpal is free software: you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation, either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * libpal is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with libpal. If not, see <http://www.gnu.org/licenses/>.
27  *
28  */
29 
30 #ifndef PAL_PRIORITYQUEUE_H
31 #define PAL_PRIORITYQUEUE_H
32 
33 #define SIP_NO_FILE
34 
35 
36 #include <iostream>
37 
38 #define LEFT(x) (2*x+1)
39 #define RIGHT(x) (2*x+2)
40 #define PARENT(x) ((x-1)/2)
41 
42 
43 namespace pal
44 {
45 
53  {
54 
55  public:
56 
63  PriorityQueue( int n, int maxId, bool min );
65 
67  PriorityQueue( const PriorityQueue & ) = delete;
69  PriorityQueue &operator=( const PriorityQueue & ) = delete;
70 
71  void print();
72 
73  int getSize() const;
74  int getSizeByPos() const;
75 
76  bool isIn( int key ) const;
77 
78  int getBest(); // O(log n)
79 
80  void remove( int key );
81  void insert( int key, double p );
82 
83  void sort(); // O(n log n)
84 
85  void downheap( int id );
86  void upheap( int key );
87 
88  void decreaseKey( int key );
89  void setPriority( int key, double new_p );
90 
91 
92  int getId( int key ) const;
93  private:
94 
95  int size;
96  int maxsize;
97  int maxId;
98  int *heap = nullptr;
99  double *p = nullptr;
100  int *pos = nullptr;
101 
102  bool ( *greater )( double l, double r );
103  };
104 
105 } // namespace
106 
107 #endif
pal::PriorityQueue::getSizeByPos
int getSizeByPos() const
Definition: priorityqueue.cpp:307
pal::PriorityQueue
Custom priority queue for use in pal labeling engine.
Definition: priorityqueue.h:52
pal::PriorityQueue::downheap
void downheap(int id)
Definition: priorityqueue.cpp:211
pal::PriorityQueue::~PriorityQueue
~PriorityQueue()
Definition: priorityqueue.cpp:69
pal
Definition: qgsdiagramrenderer.h:50
pal::PriorityQueue::remove
void remove(int key)
Definition: priorityqueue.cpp:134
pal::PriorityQueue::upheap
void upheap(int key)
Definition: priorityqueue.cpp:168
pal::PriorityQueue::operator=
PriorityQueue & operator=(const PriorityQueue &)=delete
PriorityQueue cannot be copied.
pal::PriorityQueue::sort
void sort()
Definition: priorityqueue.cpp:154
pal::PriorityQueue::getSize
int getSize() const
Definition: priorityqueue.cpp:76
pal::PriorityQueue::isIn
bool isIn(int key) const
Definition: priorityqueue.cpp:106
pal::PriorityQueue::setPriority
void setPriority(int key, double new_p)
Definition: priorityqueue.cpp:252
pal::PriorityQueue::decreaseKey
void decreaseKey(int key)
Definition: priorityqueue.cpp:273
pal::PriorityQueue::getBest
int getBest()
Definition: priorityqueue.cpp:82
pal::PriorityQueue::PriorityQueue
PriorityQueue(int n, int maxId, bool min)
Create a priority queue of max size n \param n max size of the queuet \param p external vector repres...
Definition: priorityqueue.cpp:48
pal::PriorityQueue::insert
void insert(int key, double p)
Definition: priorityqueue.cpp:116
pal::PriorityQueue::print
void print()
Definition: priorityqueue.cpp:291
pal::PriorityQueue::getId
int getId(int key) const
Definition: priorityqueue.cpp:111