由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - 有个程序,需要高手指点,多谢了
相关主题
其实有个问题好久没有明白!%如何把一个table所有的column都选出来%
请教一个新手问题SQL aggregate multiple columns in ACCESS
Table Merge (SQL Server)用SSIS EXPORT 到 EXCEL 2010 有2000个COLUMN,可能吗
a simple question about insertmacro 请教,谢谢
Oracle Group and Index question这个sql语句怎么写
better way to compare nullable columns?SQL combine two columns from two different tables no shared (转载)
问个external table field definition的问题sql里怎么做循环?
How to handle inserting value to Identity column in sql server 2005在oracle的对象类型中,能不能定义一个数组属性?
相关话题的讨论汇总
话题: column话题: 数组话题: dimension话题: array话题: 一维
进入Database版参与讨论
1 (共1页)
s********l
发帖数: 3
1
有一个2维数组,like{4 2
4 2}
将这个数组排序为一维数组,like{4,4,2,2},
如何把一维数组中的元素在原2维数组中找到2维下标。
多谢了。
b***s
发帖数: 14
2
the problem definition is not clear. How do you change from the 2-dimension
to the 1-dimension array? Column by column?

【在 s********l 的大作中提到】
: 有一个2维数组,like{4 2
: 4 2}
: 将这个数组排序为一维数组,like{4,4,2,2},
: 如何把一维数组中的元素在原2维数组中找到2维下标。
: 多谢了。

s********l
发帖数: 3
3
将二维数组按照从大到小的顺序排列,得到1维。

【在 b***s 的大作中提到】
: the problem definition is not clear. How do you change from the 2-dimension
: to the 1-dimension array? Column by column?

b***s
发帖数: 14
4
still not clear, how is the 2d array got arranged in the first place? Random?

2-dimension

【在 s********l 的大作中提到】
: 将二维数组按照从大到小的顺序排列,得到1维。
b*e
发帖数: 3845
5
the straight-forward way i can think of is that
you create a new array out[n,3], copy all the
data from source to the first column, mark the
(i,j) in the 2nd and 3rd column.
Then do a sorting based on the first column.

【在 s********l 的大作中提到】
: 有一个2维数组,like{4 2
: 4 2}
: 将这个数组排序为一维数组,like{4,4,2,2},
: 如何把一维数组中的元素在原2维数组中找到2维下标。
: 多谢了。

1 (共1页)
进入Database版参与讨论
相关主题
在oracle的对象类型中,能不能定义一个数组属性?Oracle Group and Index question
请教一个sql问题better way to compare nullable columns?
初级问题问个external table field definition的问题
encryptionHow to handle inserting value to Identity column in sql server 2005
其实有个问题好久没有明白!%如何把一个table所有的column都选出来%
请教一个新手问题SQL aggregate multiple columns in ACCESS
Table Merge (SQL Server)用SSIS EXPORT 到 EXCEL 2010 有2000个COLUMN,可能吗
a simple question about insertmacro 请教,谢谢
相关话题的讨论汇总
话题: column话题: 数组话题: dimension话题: array话题: 一维