0

我有两个文件,需要从一组唯一的前两列中找到给定的行。

本质上,我有文件 1:

11    23     0.98  0.43
13    15     0.87  0.23
14    18     0.96  0.43
23    42     0.55  0.64

和文件 2:

11    14     0.64  0.47
11    23     0.77  0.34
13    15     0.87  0.23
42    23     0.65  0.55

并且需要输出

11   14      0.64  0.47

我见过的大多数事情都需要对前两列进行某种形式的重新排序,这是需要避免的。先感谢您!

4

1 回答 1

0

您可以为此使用循环,这是一些伪代码:

for every item x in the first column
  for every item y in the second column
     if x is equal to y then
         //do your stuff here
于 2013-06-17T19:28:27.363 回答