我想根據列對Arraylist進行排序。如何根據列對數組列表進行排序?
實施例:
輸入: -
5.1,3.5,1.4,0.2,Iris-setosa
4.9,3.0,1.4,0.2,Iris-setosa
4.7,3.2,1.3,0.2,Iris-setosa
4.6,3.1,1.5,0.2,Iris-setosa
5.0,3.6,1.4,0.2,Iris-setosa
輸出: -
對於IST柱對於第二柱
4.6,3.1,1.5,0.2,Iris-setosa
4.7,3.2,1.3,0.2,Iris-setosa
4.9,3.0,1.4,0.2,Iris-setosa
5.0,3.6,1.4,0.2,Iris-setosa
5.1,3.5,1.4,0.2,Iris-setosa
4.9,3.0,1.4,0.2,Iris-setosa
4.6,3.1,1.5,0.2,Iris-setosa
4.7,3.2,1.3,0.2,Iris-setosa
5.1,3.5,1.4,0.2,Iris-setosa
5.0,3.6,1.4,0.2,Iris-setosa
同樣直到倒數第二列
一個ArrayList沒有列,只有元素......你能表現出一定的代碼? – assylias
它是元素ArrayList的ArrayList嗎? –
列的意思是,我們可以用標記器將它分開 – Dahlia