Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Java

जावा प्रोग्राम सभी कॉलमों में मैट्रिक्स में पहले और अंतिम के तत्वों को इंटरचेंज करने के लिए

इस लेख में, हम समझेंगे कि एक मैट्रिक्स में पहले और आखिरी के तत्वों को कॉलम में कैसे इंटरचेंज करना है। मैट्रिक्स में इसके तत्वों की एक पंक्ति और स्तंभ व्यवस्था है। m पंक्तियों और n स्तंभों वाले मैट्रिक्स को m × n मैट्रिक्स कहा जा सकता है।

मैट्रिक्स में अलग-अलग प्रविष्टियों को तत्व कहा जाता है और इसे एक [i] [j] द्वारा दर्शाया जा सकता है जो बताता है कि तत्व a ith पंक्ति और jth कॉलम में मौजूद है।

नीचे उसी का एक प्रदर्शन है -

मान लीजिए कि हमारा इनपुट है -

The matrix is defined as:
4 5 6 7
1 7 3 4
11 12 13 14
23 24 25 50

वांछित आउटपुट होगा -

The matrix after swapping the elements:
7 5 6 4
4 7 3 1
14 12 13 11
50 24 25 23

एल्गोरिदम

Step 1 - START
Step 2 - Declare an integer matrix namely input_matrix, and an integer value namely matrix_length.
Step 3 - Define the values.
Step 4 - Iterate over each element of the matrix using multiple for-loops and swap the required elements of the matrix using a temporary variable.
Step 5 - Display the result
Step 5 - Stop

उदाहरण 1

यहां, हम 'मेन' ​​फंक्शन के तहत सभी ऑपरेशंस को एक साथ बांधते हैं।

public class MatrixSwap {
   static void swap(int input_matrix[][]) {
   }
   public static void main(String args[]) {
      int input_matrix[][] = {
         { 4, 5, 6, 7 },
         { 1, 7, 3, 4 },
         { 11, 12, 13, 14 },
         { 23, 24, 25, 50 }
      };
      System.out.println("The matrix is defined as: ");
      for (int i = 0; i < input_matrix.length; i++) {
         for (int j = 0; j < input_matrix[0].length; j++)
            System.out.print(input_matrix[i][j] + " ");
         System.out.println();
      }
      int matrix_length = input_matrix.length;
      for (int i = 0; i < input_matrix[0].length; i++) {
         int temp = input_matrix[i][0];
         input_matrix[i][0] = input_matrix[i][matrix_length - 1];
         input_matrix[i][matrix_length - 1] = temp;
      }
      System.out.println("\nThe matrix after swapping the elements: ");
      for (int i = 0; i < matrix_length; i++) {
         for (int j = 0; j < input_matrix[0].length; j++)
            System.out.print(input_matrix[i][j] + " ");
         System.out.println();
      }
   }
}

आउटपुट

The matrix is defined as:
4 5 6 7
1 7 3 4
11 12 13 14
23 24 25 50

The matrix after swapping the elements:
7 5 6 4
4 7 3 1
14 12 13 11
50 24 25 23

उदाहरण 2

यहां, हम ऑब्जेक्ट ओरिएंटेड प्रोग्रामिंग को प्रदर्शित करने वाले कार्यों में संचालन को समाहित करते हैं।

public class MatrixSwap {
   static void swap(int input_matrix[][]) {
      int matrix_length = input_matrix.length;
      for (int i = 0; i < input_matrix[0].length; i++) {
         int temp = input_matrix[i][0];
         input_matrix[i][0] = input_matrix[i][matrix_length - 1];
         input_matrix[i][matrix_length - 1] = temp;
      }
      System.out.println("\nThe matrix after swapping the elements: ");
      for (int i = 0; i < matrix_length; i++) {
         for (int j = 0; j < input_matrix[0].length; j++)
            System.out.print(input_matrix[i][j] + " ");
         System.out.println();
      }
   }
   public static void main(String args[]) {
      int input_matrix[][] = {
         { 4, 5, 6, 7 },
         { 1, 7, 3, 4 },
         { 11, 12, 13, 14 },
         { 23, 24, 25, 50 }
      };
      System.out.println("The matrix is defined as: ");
      for (int i = 0; i < input_matrix.length; i++) {
         for (int j = 0; j < input_matrix[0].length; j++)
            System.out.print(input_matrix[i][j] + " ");
         System.out.println();
      }
      swap(input_matrix);
   }
}

आउटपुट

The matrix is defined as:
4 5 6 7
1 7 3 4
11 12 13 14
23 24 25 50

The matrix after swapping the elements:
7 5 6 4
4 7 3 1
14 12 13 11
50 24 25 23

  1. जावा में ArrayList से पहले और अंतिम तत्व कैसे प्राप्त करें?

    प्राप्त करें () ArrayList वर्ग की विधि अनुक्रमणिका मान का प्रतिनिधित्व करने वाले पूर्णांक को स्वीकार करती है और, निर्दिष्ट अनुक्रमणिका पर वर्तमान ArrayList ऑब्जेक्ट का तत्व लौटाती है। इसलिए, यदि आप 0 . पास करते हैं इस पद्धति के लिए आप वर्तमान ArrayList का पहला तत्व प्राप्त कर सकते हैं और, यदि आप li

  1. पायथन में सूची के पहले और अंतिम तत्व प्राप्त करें

    ऐसी स्थिति हो सकती है जब आपको सूची का पहला और अंतिम तत्व प्राप्त करने की आवश्यकता हो। यहां मुश्किल हिस्सा यह है कि सूचियों से इन तत्वों का पता लगाते समय आपको सूची की लंबाई पर नज़र रखनी होगी। नीचे वे दृष्टिकोण दिए गए हैं जिनका उपयोग हम इसे प्राप्त करने के लिए कर सकते हैं। लेकिन निश्चित रूप से सभी दृष

  1. सूची में पहले और अंतिम तत्वों को इंटरचेंज करने के लिए पायथन प्रोग्राम

    इस लेख में, हम नीचे दिए गए समस्या कथन के समाधान के बारे में जानेंगे। समस्या कथन - हमें एक सूची दी गई है, हमें अंतिम तत्व को पहले तत्व के साथ स्वैप करने की आवश्यकता है। समस्या को हल करने के लिए 4 दृष्टिकोण हैं जैसा कि नीचे चर्चा की गई है- दृष्टिकोण 1 - पाशविक बल दृष्टिकोण उदाहरण def swapLast(List)