Hello , can anyone give me any good blog or tutorial on priority queue . i always have difficulty in implementing it , using and updating values in it .
Thanks !
# | User | Rating |
---|---|---|
1 | Radewoosh | 3759 |
2 | orzdevinwang | 3697 |
3 | jiangly | 3662 |
4 | Benq | 3644 |
5 | -0.5 | 3545 |
6 | ecnerwala | 3505 |
7 | tourist | 3486 |
8 | inaFSTream | 3478 |
9 | maroonrk | 3454 |
10 | Rebelz | 3415 |
# | User | Contrib. |
---|---|---|
1 | adamant | 174 |
2 | awoo | 168 |
3 | nor | 165 |
4 | SecondThread | 164 |
5 | maroonrk | 162 |
5 | BledDest | 162 |
5 | Um_nik | 162 |
8 | -is-this-fft- | 150 |
9 | Geothermal | 146 |
10 | Vladosiya | 145 |
Hello , can anyone give me any good blog or tutorial on priority queue . i always have difficulty in implementing it , using and updating values in it .
Thanks !
Name |
---|
Is there a specific reason you want to implement your own priority queue? Often the standard library implementation is enough.
No , actually library is enough but i don't know where can i find all PQ libraries at one place . do u have any source , from where u studied PQ . if possible please also suggest operator overloading blogs / tutorials .
Redux
I usually just refer to one of the standard language references.
cpp
java
actually i was studying dijkartas ,
:https://www.geeksforgeeks.org/dijkstras-shortest-path-algorithm-using-priority_queue-stl/
i find a very weird syntax **** priority_queue< iPair, vector , greater > pq;
i couldn't find it anywhere , does the blog you given above contains everything about PQ ?
That is the syntax of templates in cpp.
Here is the language reference to templates in general https://en.cppreference.com/w/cpp/language/templates.
Also the previous link to cpp priority queues does describe the parameters for the priority queue template.
Thanks Redux
This is a good link to learn C++: https://www.learncpp.com/