私はAlgorithm試験のレビューをしていますが、ここではサンプルソリューションなしで古い試験で見つけた問題があります。私はこの質問への合理的な答えがどうなるかわからない。私には Using a heap and its two operations Remove and Insert, design an algorithm which sorts an array of size n in
私はJavaでヒープソート方法を書き込もうとしていますが、私がそれをしたいとまったく働いていない: public class HeapSort {
private static int n;
private static void swap(int[] A, int a, int b)
{
int tmp = A[a];
A[a] = A[