Skip to content

Instantly share code, notes, and snippets.

@ampulhetadosaber
Created October 2, 2020 11:12
Show Gist options
  • Save ampulhetadosaber/926dea4af74905b39c6b3b8e26a5c249 to your computer and use it in GitHub Desktop.
Save ampulhetadosaber/926dea4af74905b39c6b3b8e26a5c249 to your computer and use it in GitHub Desktop.
#include<iostream>
#include<queue> // biblioteca da Priority Queue
using namespace std;
int main()
{
// priority_queue< tipo_de_variavel > nome_da_priority_queue;
priority_queue<int> fila;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment