Wednesday, July 3, 2024
HomeLanguagesJavascriptJavascript Program to Interchange elements of first and last rows in matrix

Javascript Program to Interchange elements of first and last rows in matrix

Given a 4 x 4 matrix, we have to interchange the elements of first and last row and show the resulting matrix.
Examples : 
 

Input : 3 4 5 0
        2 6 1 2
        2 7 1 2
        2 1 1 2
Output : 2 1 1 2
         2 6 1 2
         2 7 1 2
         3 4 5 0

Input : 9 7 5 1
        2 3 4 1
        5 6 6 5
        1 2 3 1
Output : 1 2 3 1
         2 3 4 1
         5 6 6 5
         9 7 5 1

 

The approach is very simple, we can simply swap the elements of first and last row of the matrix inorder to get the desired matrix as output.
Below is the implementation of the approach : 
 

Javascript




<script>
// Javascript code to swap the element of first
// and last row and display the result
     
    function interchangeFirstLast(m)
    {
        let rows = m.length;
           
        // swapping of element between first
        // and last rows
        for (let i = 0; i < m[0].length; i++) {
            let t = m[0][i];
            m[0][i] = m[rows-1][i];
            m[rows-1][i] = t;
        }
    }
     
    // Driver code
     
    // input in the array
    let m = [[8, 9, 7, 6],
          [4, 7, 6, 5],
       [3, 2, 1, 8],
       [9, 9, 7, 7]]
        interchangeFirstLast(m);
           
     // printing the interchanged matrix
     for (let i = 0; i < m.length; i++) {
        for (let j = 0; j < m[0].length; j++)
            document.write(m[i][j] + " ");
        document.write("<br>");
     }
     
     
    // This code is contributed by avanitrachhadiya2155
</script>


Output : 
 

9 9 7 7 
4 7 6 5 
3 2 1 8 
8 9 7 6 

Time Complexity: O(N), where N is no of rows; as we are using single loop for interchanging first and last rows of given matrix.

Auxiliary Space: O(1), as we are not using any extra space.

Please refer complete article on Interchange elements of first and last rows in matrix for more details!

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 neveropen!

Shaida Kate Naidoo
am passionate about learning the latest technologies available to developers in either a Front End or Back End capacity. I enjoy creating applications that are well designed and responsive, in addition to being user friendly. I thrive in fast paced environments. With a diverse educational and work experience background, I excel at collaborating with teams both local and international. A versatile developer with interests in Software Development and Software Engineering. I consider myself to be adaptable and a self motivated learner. I am interested in new programming technologies, and continuous self improvement.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments