Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

주기적으로 배열을 1씩 회전시키는 Python 프로그램

<시간/>

사용자 입력 배열이 제공됩니다. 우리의 임무는 순환적으로 회전한다는 것은 값을 시계 방향으로 회전하는 것을 의미합니다.

Input: A=[1,2,3,4,5]
Output=[5,1,2,3,4]

알고리즘

Step 1: input array element.
Step 2: Store the last element in a variable say x.
Step 3: Shift all elements one position ahead.
Step 4: Replace first element of array with x.

예시 코드

# Python program to cyclically rotate
#an array by one
# Method for rotation
def rotate(A, n):
   x = A[n - 1]
   for i in range(n - 1, 0, -1):
      A[i] = A[i - 1];
   A[0] = x;
# Driver function
A=list()
n=int(input("Enter the size of the List ::"))
print("Enter the Element of  List ::")
for i in range(int(n)):
   k=int(input(""))
   A.append(k)
print ("The array is ::>")
for i in range(0, n):
   print (A[i], end = ' ')
rotate(A, n)
print ("\nRotated array is")
for i in range(0, n):
   print (A[i], end = ' ')

출력

Enter the size of the  List ::5
Enter the Element of  List ::
8
7
90
67
56
The array is ::>
8 7 90 67 56 
Rotated array is
56 8 7 90 67