//Creating an alias template<class T> using min_heap = priority_queue<T, std::vector<T>, std::greater<T>>; //Declaration min_heap<int> my_heap;