次のコードがあります。これは、配列のサイズ変更関数の実装です。正しいようですが、プログラムをコンパイルすると、次のエラーが発生します。
g++ -Wall -o "resizing_arrays" "resizing_arrays.cpp" (in directory: /home/aristofanis/Desktop/coursera-impl)
resizing_arrays.cpp: In function ‘int main()’:
resizing_arrays.cpp:37: error: invalid initialization of non-const reference of type ‘int*&’ from a temporary of type ‘int*’
resizing_arrays.cpp:7: error: in passing argument 1 of ‘void resize(int*&, int, int, int)’
resizing_arrays.cpp:39: error: invalid initialization of non-const reference of type ‘int*&’ from a temporary of type ‘int*’
resizing_arrays.cpp:7: error: in passing argument 1 of ‘void resize(int*&, int, int, int)’
resizing_arrays.cpp:41: error: invalid initialization of non-const reference of type ‘int*&’ from a temporary of type ‘int*’
resizing_arrays.cpp:7: error: in passing argument 1 of ‘void resize(int*&, int, int, int)’
Compilation failed.
コードは次のとおりです。
int N=5;
void resize( int *&arr, int N, int newCap, int initial=0 ) { // line 7
N = newCap;
int *tmp = new int[ newCap ];
for( int i=0; i<N; ++i ) {
tmp[ i ] = arr[ i ];
}
if( newCap > N ) {
for( int i=N; i<newCap; ++i ) {
tmp[ i ] = initial;
}
}
arr = new int[ newCap ];
for( int i=0; i<newCap; ++i ) {
arr[ i ] = tmp[ i ];
}
}
void print( int *arr, int N ) {
for( int i=0; i<N; ++i ) {
cout << arr[ i ];
if( i != N-1 ) cout << " ";
}
}
int main() {
int arr[] = { 1, 2, 3, 4, 5 };
print( arr, N );
resize( arr, N, 5, 6 ); // line 37
print( arr, N);
resize( arr, N, 10, 1 ); // line 39
print( arr, N );
resize( arr, N, 3 ); // line 41
print ( arr, N );
return 0;
}
誰か助けてもらえますか?前もって感謝します。