Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

cyclically rotate an array by one

def rotate( arr, n):
    a[0],a[1:]=a[-1],a[:n-1]
    
#Driver Code    
a=[-1,2,3,7,5]
rotate(a,len(a))
print(a)
#Output: [5, -1, 2, 3, 7]
Comment

cyclically rotate an array by one

# Python3 code for program to
# cyclically rotate an array by one
 
# Method for rotation
def rotate(arr, n):
    x = arr[n - 1]
     
    for i in range(n - 1, 0, -1):
        arr[i] = arr[i - 1];
         
    arr[0] = x;
 
 
# Driver function
arr= [1, 2, 3, 4, 5]
n = len(arr)
print ("Given array is")
for i in range(0, n):
    print (arr[i], end = ' ')
 
rotate(arr, n)
 
print ("
Rotated array is")
for i in range(0, n):
    print (arr[i], end = ' ')
 
# This article is contributed
# by saloni1297
Comment

cyclically rotate an array by once

#include <iostream>
using namespace std;
 
void rotate(int arr[], int n)
{
    int i = 0, j = n-1; // i and j pointing to first and last element respectively
      while(i != j){
      swap(arr[i], arr[j]);
      i++;
    }
}
 
// Driver code
int main()
{
    int arr[] = {1, 2, 3, 4, 5}, i;
    int n = sizeof(arr) /
            sizeof(arr[0]);
 
    cout << "Given array is 
";
    for (i = 0; i < n; i++)
        cout << arr[i] << " ";
 
    rotate(arr, n);
 
    cout << "
Rotated array is
";
    for (i = 0; i < n; i++)
        cout << arr[i] << " ";
 
    return 0;
}
Comment

cyclically rotate an array by one

void rotate(int arr[], int n)
{
    int x=arr[n-1];
    for(int i=n-1;i>0;i--)
    {
        arr[i]=arr[i-1];
    }
    arr[0]=x;
}
Comment

PREVIOUS NEXT
Code Example
Python :: plotly update legend title 
Python :: how to get all folders on path in python 
Python :: time.ctime(os.path.getmtime phyton in datetime 
Python :: nltk in python 
Python :: how to check if item is file in python or not 
Python :: FileExistsError: [Errno 17] File exists: 
Python :: mean of torch tensor 
Python :: new in python 
Python :: make directory python 
Python :: python open a+ 
Python :: right angle triangle in python 
Python :: discord py color 
Python :: pandas row where value in list 
Python :: Converting utc time string to datetime object python 
Python :: pytest parametrize 
Python :: get count of unique values in column pandas 
Python :: list of prime numbers in python with list comprehension 
Python :: pil image to numpy 
Python :: generic type python 
Python :: pygame how to get surface lenght 
Python :: error urllib request no attribute 
Python :: python empty dictionary 
Python :: all the positions of a letter occurrences in a string python 
Python :: split a given number in python 
Python :: pandas df row count 
Python :: uniform distribution python example 
Python :: python binary search algorithm 
Python :: how to create a countdown timer using python 
Python :: how to add column to np array 
Python :: python append to csv on new line 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =