在C語言中,可以使用以下技巧來reverse數組元素:
void reverse_array(int arr[], int size) {
int start = 0;
int end = size - 1;
while (start < end) {
int temp = arr[start];
arr[start] = arr[end];
arr[end] = temp;
start++;
end--;
}
}
void reverse_array(int arr[], int start, int end) {
if (start >= end) {
return;
}
int temp = arr[start];
arr[start] = arr[end];
arr[end] = temp;
reverse_array(arr, start + 1, end - 1);
}
這些是兩種常用的方法來reverse數組元素。可以根據具體的需求選擇合適的方法來實現。