Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะแปลงอาร์เรย์ 2D เป็นอาร์เรย์ 1D ใน C # ได้อย่างไร


ตั้งค่าอาร์เรย์สองมิติและอาร์เรย์หนึ่งมิติ -

int[,] a = new int[2, 2] {{1,2}, {3,4} };
int[] b = new int[4];

ในการแปลงอาร์เรย์ 2D เป็น 1D ให้ตั้งค่าสองมิติเป็นหนึ่งมิติที่เราประกาศก่อนหน้านี้ -

for (i = 0; i < 2; i++) {
   for (j = 0; j < 2; j++) {
      b[k++] = a[i, j];
   }
}

ต่อไปนี้เป็นรหัสที่สมบูรณ์ในการแปลงอาร์เรย์สองมิติเป็นอาร์เรย์หนึ่งมิติใน C# -

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Program {
   class twodmatrix {

      static void Main(string[] args) {
      int[, ] a = new int[2, 2] {
         {
            1,
            2
         },{
            3,
            4
            }
         };

         int i, j;
         int[] b = new int[4];
         int k = 0;

         Console.WriteLine("Two-Dimensional Array...");
         for (i = 0; i < 2; i++) {

            for (j = 0; j < 2; j++) {
               Console.WriteLine("a[{0},{1}] = {2}", i, j, a[i, j]);
            }
         }

         Console.WriteLine("One-Dimensional Array...");
         for (i = 0; i < 2; i++) {
            for (j = 0; j < 2; j++) {
               b[k++] = a[i, j];
            }
         }  

         for (i = 0; i < 2 * 2; i++) {
            Console.WriteLine("{0}\t", b[i]);
         }
         Console.ReadKey();
      }
   }
}