Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C#, rotating 2D arrays

Tags:

arrays

c#

I've looked at other post on rotating 2D arrays, but it's not quite what I want. I want something like this

 int[,] original= new int[4,2]
       {
           {1,2},
           {5,6},
           {9,10},
           {13,14}
       };

I want to turn it like this, rotatedArray = { {1,5,9,13}, {2,6,10,14}}; I want to do some analysis by column, as opposed to by rows.

This works, but is there an easier way??

 private static int[,] RotateArray(int[,] myArray)
  {
        int org_rows = myArray.GetLength(0);
        int org_cols = myArray.GetLength(1);

        int[,] myRotate = new int[org_cols, org_rows];

        for (int i = 0; i < org_rows; i++)
        {
            for(int j = 0; j < org_cols; j++)
            {
                myRotate[j, i] = myArray[i, j];
            }
        }

        return myRotate;
    }

Is there an easy way to iterate through columns in c#?
B

like image 758
user327764 Avatar asked Apr 28 '10 12:04

user327764


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr. Stroustroupe.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

Is C programming hard?

C is more difficult to learn than JavaScript, but it's a valuable skill to have because most programming languages are actually implemented in C. This is because C is a “machine-level” language. So learning it will teach you how a computer works and will actually make learning new languages in the future easier.


1 Answers

If you change your array to be an array of arrays it gets easier. I found this if you change it to an int[][]:

int[][] original = new[]
                                   {
                                       new int[] {1, 2},
                                       new int[] {5, 6},
                                       new int[] {9, 10},
                                       new int[] {13, 14}
                                   };

and the rotate method:

private static int[][] Rotate(int[][] input)
{
    int length = input[0].Length;
    int[][] retVal = new int[length][];
    for(int x = 0; x < length; x++)
    {
        retVal[x] = input.Select(p => p[x]).ToArray();
    }
    return retVal;
}
like image 78
Tigraine Avatar answered Oct 28 '22 10:10

Tigraine