Given an array of integers, update every element with the multiplication of previous and next elements with the following exceptions.
a) The First element is replaced by the multiplication of the first and second.
b) The last element is replaced by multiplication of the last and second last.
Example:
Input : arr[] = {2, 3, 4, 5, 6}
Output : arr[] = {6, 8, 15, 24, 30}
// We get the above output using following
// arr[] = {2*3, 2*4, 3*5, 4*6, 5*6}
Source: Top 25 Interview Questions
Simple Solution is to create an auxiliary array ay, copy the contents of the given array to the auxiliary array. Finally, traverse the auxiliary array and update the given array using copied value. The Time complexity of this solution is O(n), but it requires O(n) extra space.
An efficient solution can solve the problem in O(n) time and O(1) space. The idea is to keep track of previous elements in the loop.
Flowchart:

Flowchart- modify
Algorithm:
- Create a method named “modify” that takes an integer array “arr” and its length “n” as input parameters.
- now check if the length is less than or equal to 1, if yes then return.
- Create a variable named “prev” and initialize it with the first element of the array.
- Then change the value of the first element of the array with the product of the first and second elements.
- Start a for loop and traverse the array from the second element to the second last element
- In a loop, Create a variable named “curr” and initialize it with the value of the current element of the array.
- Now, update the current element of the array with the product of the previous and next elements.
- Set the value of “prev” with the value of “curr”.
- Now out of the loop, update the value of the last element of the array with the product of the second last, and last elements.
Below is the implementation of this idea.
C++
#include<iostream>
using namespace std;
void modify( int arr[], int n)
{
if (n <= 1)
return ;
int prev = arr[0];
arr[0] = arr[0] * arr[1];
for ( int i=1; i<n-1; i++)
{
int curr = arr[i];
arr[i] = prev * arr[i+1];
prev = curr;
}
arr[n-1] = prev * arr[n-1];
}
int main()
{
int arr[] = {2, 3, 4, 5, 6};
int n = sizeof (arr)/ sizeof (arr[0]);
modify(arr, n);
for ( int i=0; i<n; i++)
cout << arr[i] << " " ;
return 0;
}
|
Java
import java.io.*;
import java.util.*;
import java.lang.Math;
class Multiply
{
static void modify( int arr[], int n)
{
if (n <= 1 )
return ;
int prev = arr[ 0 ];
arr[ 0 ] = arr[ 0 ] * arr[ 1 ];
for ( int i= 1 ; i<n- 1 ; i++)
{
int curr = arr[i];
arr[i] = prev * arr[i+ 1 ];
prev = curr;
}
arr[n- 1 ] = prev * arr[n- 1 ];
}
public static void main(String[] args)
{
int arr[] = { 2 , 3 , 4 , 5 , 6 };
int n = arr.length;
modify(arr, n);
for ( int i= 0 ; i<n; i++)
System.out.print(arr[i]+ " " );
}
}
|
Python3
def modify(arr, n):
if n < = 1 :
return
prev = arr[ 0 ]
arr[ 0 ] = arr[ 0 ] * arr[ 1 ]
for i in range ( 1 , n - 1 ):
curr = arr[i];
arr[i] = prev * arr[i + 1 ]
prev = curr
arr[n - 1 ] = prev * arr[n - 1 ]
arr = [ 2 , 3 , 4 , 5 , 6 ]
n = len (arr)
modify(arr, n)
for i in range ( 0 , n):
print (arr[i],end = " " )
|
C#
using System;
class GFG
{
static void modify( int []arr, int n)
{
if (n <= 1)
return ;
int prev = arr[0];
arr[0] = arr[0] * arr[1];
for ( int i=1; i<n-1; i++)
{
int curr = arr[i];
arr[i] = prev * arr[i+1];
prev = curr;
}
arr[n-1] = prev * arr[n-1];
}
public static void Main()
{
int []arr = {2, 3, 4, 5, 6};
int n = arr.Length;
modify(arr, n);
for ( int i=0; i<n; i++)
Console.Write(arr[i]+ " " );
}
}
|
PHP
<?php
function modify(& $arr , $n )
{
if ( $n <= 1)
return ;
$prev = $arr [0];
$arr [0] = $arr [0] * $arr [1];
for ( $i = 1; $i < $n - 1; $i ++)
{
$curr = $arr [ $i ];
$arr [ $i ] = $prev * $arr [ $i + 1];
$prev = $curr ;
}
$arr [ $n -1] = $prev * $arr [ $n - 1];
}
$arr = array (2, 3, 4, 5, 6);
$n = sizeof( $arr );
modify( $arr , $n );
for ( $i = 0; $i < $n ; $i ++)
echo $arr [ $i ] . " " ;
?>
|
Javascript
<script>
function modify(arr, n)
{
if (n <= 1)
return ;
let prev = arr[0];
arr[0] = arr[0] * arr[1];
for (let i = 1; i < n - 1; i++)
{
let curr = arr[i];
arr[i] = prev * arr[i+1];
prev = curr;
}
arr[n-1] = prev * arr[n-1];
}
let arr = [2, 3, 4, 5, 6];
let n = arr.length;
modify(arr, n);
for (let i = 0; i < n; i++)
document.write(arr[i] + " " );
</script>
|
Time complexity: O(n) where n is size of given array
Auxiliary Space: O(1) because it is using constant space for variables
Please write comments if you find anything incorrect, if or you want to share more information about the topic discussed above.
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
07 Mar, 2023
Like Article
Save Article