Python Program to replace every element with the greatest element on right side
Python Program to get list size n and n elements of list, replace every elements with the greatest element located in right side.
Sample Input 1:
5 5 7 9 3 1
Sample Output 1:
9 9 3 3 1
Program or Solution
l=list(map(int,input("Enter numbers:").split(" ")))
for i in range(0,len(l)-1):
max1=l[i+1]
for j in range(i+2,len(l)):
if(l[j]>max1):
ind=j
max1=l[j]
l[i]=l[ind]
print(l)
Program Explanation
visit each location in list find the greatest element (max1)next to the location using Store the max1 in current location by l[i] = max1Comments
Related Programs
- list input in python
- sum of list in python | without using built-in function
- Average of list in python | without using built-in function
- linear search in python
- largest element in the list python | without using built-in function
- smallest element in the list python | without using built-in function
- Print all the numbers which are less than given key element from a given list.
- delete element in list python
- Revese the elements in list python
- Reverse the first half of list elements in python
- Reverse the second half of list elements in python
- list sort python
- list sort descending order python
- Python Program to sort half of the list elements in ascending order and next half in descending order.
- merging two lists in python
- circular list rotation in python
coming Soon
coming Soon