用 C++ 反转数组
本文展示了一个在 C++ 代码中需要按降序反转的数组,其中最高索引会交换到最低索引,并通过循环遍历数组来实现。
示例
#include <iostream> #include <algorithm> using namespace std; void reverseArray(int arr[], int n){ for (int low = 0, high = n - 1; low < high; low++, high--){ swap(arr[low], arr[high]); } for (int i = 0; i < n; i++){ cout << arr[i] << " "; } } int main(){ int arrInput[] = { 11, 12, 13, 14, 15 }; cout<<endl<<"Array::"; for (int i = 0; i < 5; i++){ cout << arrInput[i] << " "; } int n = sizeof(arrInput)/sizeof(arrInput[0]); cout<<endl<<"Reversed::"; reverseArray(arrInput, n); return 0; }
输出
提供的数组为整数类型,需要按降序反转,结果如下;
Array::11 12 13 14 15 Reversed::15 14 13 12 11
广告