我有一个有趣的问题
这是对象结构
public class Testdata {
//Which is a consecutive running number i.e 1,2,3..etc
private int sequence;
//classified based on this again any random numbers
private int window;
//need to calculate
private int windowposition;
}
现在基于序列和窗口,我需要导出相对于窗口的窗口位置
测试数据
所以用于测试数据序列/窗口
1 / 2
2 / 3
3 / 2
4 / 3
5 / 3
预期产出
sequence/window : window position would be (in the same order)
1 / 2 : 1
2 / 3 : 1
3 / 2 : 2
4 / 3 : 2
5 / 3 : 3
更新:
是的,确实,我已经实现了可比较并将列表排序到以下顺序
1 / 2
3 / 2
2 / 3
4 / 3
5 / 3
现在我如何计算windowposition
每个元素相对于其窗口的