将一维数组的索引转换为二维数组i。即行和列

时间:2013-05-28 11:11:44

标签: c# arrays winforms

我有WinForms的一个应用程序,我在内部列表框中插入名称和价格..名称和价格分别存储在二维数组中。现在,当我从listbox中选择一条记录时,它只给我一个索引,我可以从中获取字符串名称和价格来更新该记录我必须更改该索引的名称和价格,我想更新两个二维数组名称和价格。但所选索引只是一维的。我想将该索引转换为行和列。怎么做?

但是我在这样的列表框中插入记录。

int row = 6, column = 10;
for(int i=0;i<row;i++)
{
    for(int j=0;j<column;j++)
    {
        value= row+" \t "+ column +" \t "+ name[i, j]+" \t " +price[i, j];
        listbox.items.add(value);
    }
}

4 个答案:

答案 0 :(得分:14)

虽然我没有完全理解确切的情况,但在1D和2D坐标之间进行平移的常用方法是:

从2D到1D:

index = x + (y * width)

index = y + (x * height)

取决于您是从左到右还是从上到下阅读。

从1D到2D:

x = index % width
y = index / width 

x = index / height
y = index % height

答案 1 :(得分:0)

试试这个,

int i = OneDimensionIndex%NbColumn
int j = OneDimensionIndex/NbRow //Care here you have to take the integer part

答案 2 :(得分:0)

好吧,如果我理解正确,在你的情况下,显然ListBox条目的数组条目的索引是ListBox中的索引。然后,名称和价格位于该数组元素的索引0和索引1

示例:

string[][] namesAndPrices = ...;

// To fill the list with entries like "Name: 123.45"
foreach (string[] nameAndPrice in namesAndPrices)
   listBox1.Items.Add(String.Format("{0}: {1}", nameAndPrice[0], nameAndPrice[1]));

// To get the array and the name and price, it's enough to use the index
string[] selectedArray = namesAndPrices[listBox1.SelectedIndex];
string theName = selectedArray[0];
string thePrice = selectedArray[1];

如果您有这样的数组:

string[] namesAndPrices = new string[] { "Hello", "123", "World", "234" };

事情有所不同。在这种情况下,指数是

int indexOfName = listBox1.SelectedIndex * 2;
int indexOfPrice = listBox1.SelectedIndex * 2 + 1;

答案 3 :(得分:0)

用于在3D索引之间转换1D索引:

(int, int, int) OneToThree(i, dx, dy int) {
    z = i / (dx * dy)
    i = i % (dx * dy)
    y = i / dx
    x = i % dx
    return x, y, z
}

int ThreeToOne(x, y, z, dx, dy int) {
    return x + y*dx + z*dx*dy
}