    #include <vector>
    #include <algorithm>
    #include <iostream>
     
    /*Heap Sort с применением стандартных средств языка*/
    void heapsort_std(int a[], int size){
    	std::cout << "heapsort: sizeof(array) = " << sizeof(a) << std::endl;
    }
     
    int main() {
    	int v[10] = {7, 1, 3, 6, 5, 8, 9, 4, 0, 2};
    	std::cout << "main: sizeof(array) = " << sizeof(v) << std::endl;
    	heapsort_std(v, 10);
    	return 0;
    }