Author: @037
sudo g++ -std=c++11 -o HeapSort.exe HeapSort.cpp
The input starts with an integer number which indicates the number of elements (integers) to be sorted, n. Then, the elements follow, one per line.
Outputs the elements in non-decreasing order. Each element must be followed by ;.
Input
6
5
3
2
1
6
4
Output
1;2;3;4;5;6;