📌  相关文章
📜  以顺时针方式打印给定矩阵的边界元素

📅  最后修改于: 2021-09-06 05:11:59             🧑  作者: Mango

给定一个大小为N * M的矩阵arr[][] ,任务是以顺时针形式打印给定矩阵的边界元素。

例子:

朴素的方法:解决这个问题最简单的方法是遍历给定的矩阵并检查当前元素是否是边界元素。如果发现为真,则打印该元素。

时间复杂度: O(N 2 )
辅助空间: O(1)

高效方法:为了优化上述方法,思想是只遍历矩阵的第一最后一行以及第一列和最后一列。请按照以下步骤解决问题:

  • 打印矩阵的第一行。
  • 打印矩阵的最后一列,除了第一行。
  • 打印除最后一列之外的矩阵的最后一行。
  • 打印矩阵的第一列,除了第一行和最后一行。

下面是上述方法的实现:

C++
// C++ program of the above approach
#include 
using namespace std;
 
// Function to print the boundary elements
// of the matrix in clockwise
void boundaryTraversal(vector > arr, int N,
                       int M)
{
 
  // Print the first row
  for (int i = 0; i < M; i++)
  {
    cout << arr[0][i] << " ";
  }
 
  // Print the last column
  // except the first row
  for (int i = 1; i < N; i++)
  {
    cout << arr[i][M - 1] << " ";
  }
 
  // Print the last row
  // except the last column
  if (N > 1)
  {
 
    // Print the last row
    for (int i = M - 2; i >= 0; i--)
    {
      cout << arr[N - 1][i] << " ";
    }
  }
 
  // Print the first column except
  // the first and last row
  if (M > 1) {
 
    // Print the first column
    for (int i = N - 2; i > 0; i--) {
      cout << arr[i][0] << " ";
    }
  }
}
 
// Driver Code
int main()
{
  vector > arr{ { 1, 2, 3 },
                           { 4, 5, 6 },
                           { 7, 8, 9 } };
  int N = arr.size();
  int M = arr[0].size();
 
  // Function Call
  boundaryTraversal(arr, N, M);
  return 0;
}
 
// This code is contributed by Dharanendra L V


Java
// Java program of the above approach
import java.util.*;
 
class GFG {
 
    // Function to print the boundary elements
    // of the matrix in clockwise
    public static void boundaryTraversal(
        int arr[][], int N, int M)
    {
 
        // Print the first row
        for (int i = 0; i < M; i++) {
            System.out.print(arr[0][i] + " ");
        }
 
        // Print the last column
        // except the first row
        for (int i = 1; i < N; i++) {
            System.out.print(arr[i][M - 1] + " ");
        }
 
        // Print the last row
        // except the last column
        if (N > 1) {
 
            // Print the last row
            for (int i = M - 2; i >= 0; i--) {
                System.out.print(arr[N - 1][i] + " ");
            }
        }
 
        // Print the first column except
        // the first and last row
        if (M > 1) {
 
            // Print the first column
            for (int i = N - 2; i > 0; i--) {
                System.out.print(arr[i][0] + " ");
            }
        }
    }
 
    // Driver Code
    public static void main(String[] args)
    {
        int arr[][]
            = { { 1, 2, 3 },
                { 4, 5, 6 },
                { 7, 8, 9 } };
        int N = arr.length;
        int M = arr[0].length;
 
        // Function Call
        boundaryTraversal(arr, N, M);
    }
}


Python3
# Python program of the above approach
 
# Function to print the boundary elements
# of the matrix in clockwise
def boundaryTraversal(arr, N, M):
   
    # Print the first row
    for i in range(M):
        print(arr[0][i], end = " ");
 
    # Print the last column
    # except the first row
    for i in range(1, N):
        print(arr[i][M - 1], end = " ");
 
    # Print the last row
    # except the last column
    if (N > 1):
 
        # Print the last row
        for i in range(M - 2, -1, -1):
            print(arr[N - 1][i], end = " ");
 
    # Print the first column except
    # the first and last row
    if (M > 1):
 
        # Print the first column
        for i in range(N - 2, 0, -1):
            print(arr[i][0], end = " ");
 
# Driver Code
if __name__ == '__main__':
    arr = [[1, 2, 3],
           [4, 5, 6],
           [7, 8, 9]];
    N = len(arr);
    M = len(arr[0]);
 
    # Function Call
    boundaryTraversal(arr, N, M);
 
    # This code is contributed by 29AjayKumar


C#
// C# program of the above approach
using System;
 
class GFG{
     
// Function to print the boundary elements
// of the matrix in clockwise
static void boundaryTraversal(int[,] arr,
                              int N, int M)
{
     
    // Print the first row
    for(int i = 0; i < M; i++)
    {
        Console.Write(arr[0, i] + " ");
    }
     
    // Print the last column
    // except the first row
    for(int i = 1; i < N; i++)
    {
        Console.Write(arr[i, M - 1] + " ");
    }
     
    // Print the last row
    // except the last column
    if (N > 1)
    {
         
        // Print the last row
        for(int i = M - 2; i >= 0; i--)
        {
            Console.Write(arr[N - 1, i] + " ");
        }
    }
 
    // Print the first column except
    // the first and last row
    if (M > 1)
    {
         
        // Print the first column
        for(int i = N - 2; i > 0; i--)
        {
            Console.Write(arr[i, 0] + " ");
        }
    }
}
 
// Driver code   
static void Main()
{
    int[,] arr = { { 1, 2, 3 },
                   { 4, 5, 6 },
                   { 7, 8, 9 } };
    int N = 3;
    int M = 3;
     
    // Function Call
    boundaryTraversal(arr, N, M);
}
}
 
// This code is contributed by divyeshrabadiya07


Javascript


输出:
1 2 3 6 9 8 7 4

时间复杂度: O(N + M)
辅助空间: O(1)

如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live