我有随机String
放入的 s 。ArrayList
private ArrayList<String> teamsName = new ArrayList<String>();
String[] helper;
例如:
teamsName.add(helper[0]) where helper[0] = "dragon";
teamsName.add(helper[1]) where helper[1] = "zebra";
teamsName.add(helper[2]) where helper[2] = "tigers" // and so forth up to about 150 strings.
鉴于您无法控制输入(即进入 ArrayList 的字符串是随机的;斑马或龙以任何顺序),一旦 ArrayList 充满输入,我如何按字母顺序对它们进行排序,不包括第一个?
teamsName[0]
很好;按字母顺序排序teamsName[1 to teamsName.size]
。