我们如何在c#中过滤数据表?
我对数据表有特定的要求,但我无法得到。请帮助我解决我的问题。我的查询如下
- 我的数据表是
<前><代码> C1 C2 C3 C4 C5 R1 1 2 3 4 25 R2 6 7 8 24 10 R3 11 22 13 14 15 R4 16 17 23 19 20 R5 21 7 18 9 5
- 在输出中,我希望每个列的最大值与行和列的位置(索引)如下
值行列 21 R5 C1 22 R3 C2 23 R4 C3 24 R2 C4 25 R1 C5
谁能帮助我,我应该如何取得结果?
I have specific requirement with datatable which i am not able to get. Please help me to solve my problem. My query is as below
- The datatable i have with data is
C1 C2 C3 C4 C5 R1 1 2 3 4 25 R2 6 7 8 24 10 R3 11 22 13 14 15 R4 16 17 23 19 20 R5 21 7 18 9 5
- In output i would like to have max value from each colum with position (index) of row and colum as following
Value Row Column 21 R5 C1 22 R3 C2 23 R4 C3 24 R2 C4 25 R1 C5
Can anyone please help me, how should i achieve result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设列名称为 C1、C2、C3、C4、C5。
伪代码/算法。
最后,上述变量应包含最大值和相应的最大行数。
Assuming column names are C1, C2, C3, C4, C5.
Pseudo code/Algorithm.
At the end of this for the above variables should contain the max values and corresponding max rows.