List<String[]> strsLst = new ArrayList<String[]>();
strsList的size不定。
其元素 String[] 的length 不定。
求这些数组之间的组合。
如:list中有 [1,2,3] [a,b] [101,102]
最终希望得到的完整结果是 :
1,a,101
1,a,102
1,b,101
1,b,102
2,a,101
2,a,102
2,b,101
2,b,102
3,a,101
3,a,102
3,b,101
3,b,102
其实是不同数组之间的组合。
(~ o ~)~zZ 求帮助! 想了2个小时了,貌似陷入了逻辑误区!
求大神帮忙~~~~~~十分感谢!!!!