СИ++ Осуществите циклический сдвиг компонент заданного вектора A(N) влево ** одну...

0 голосов
90 просмотров

СИ++

Осуществите циклический сдвиг компонент заданного вектора A(N) влево на одну позицию, то есть получите вектор А = (a2 , a3 , ..., aN , a1 ).

#include

#include

#include


Информатика (104 баллов) | 90 просмотров
Дан 1 ответ
0 голосов

#include
#include
#include
#include
#include
#include
using namespace std;
const int SIZE = 20;
int arr[SIZE] = { -1, 1, 5, 2, -4, 0, 7, -2, 5, -9, 3,6,-9,0,-4,4,6,2,13,5 };
int main()
{
cout << "new Array:" << std::endl;<br> copy(arr, arr + SIZE, std::ostream_iterator(std::cout, " "));
cout << std::endl;</p>

int first= arr[0];

for (int k=0;karr [k]=arr[k+1];
arr[SIZE-1]=first;

cout << "new Array:" << std::endl;<br> copy(arr, arr + SIZE, std::ostream_iterator(std::cout, " "));
cout << std::endl;<br>

system("pause");

return 0;}

(161 баллов)