我有一个ArrayList(String),其中包含一个格式化日期列表,如下所示:
element 1: "2012-5-1"
element 2: "2012-8-10"
element 3: "2012-12-5"
element 4: "2013-12-21"
element 5: "2013-12-13"
element 6: "2014-5-8"
创建包含唯一年份条目的另一个列表或普通原始数组的最有效/框架方法是什么?例如,我的新列表将包含:
element 1: "2012"
element 2: "2013"
element 3: "2014"
答案 0 :(得分:3)
试试这个
ArrayList<String> yearsOnlylist = new ArrayList<String> ();
for(String s : elements) {
String yearExtracted = s.substring(0,4);
yearsOnlylist.add(yearExtracted);
}
其中元素是扩展表单中日期列表的名称。
用作目的地列表
LinkedList<String> yearsOnlylist = new LinkedList<String> ();
而不是 ArrayList 可以明显提高转换效率(因为在LinkedList中添加 O(1))但是第二次访问特定位置,效率较低( O(n) vs O(1))。
答案 1 :(得分:2)
只需将它们添加到Set并将其转换为列表:
Set<String> unique = new HashSet<String>();
for (String element : elements) {
set.put(element.substring(0,4));
}
List<String> uniqueList = new ArrayList<String>();
uniqueList.addAll(unique);
答案 2 :(得分:1)
遍历数组列表并获取数组列表中每个成员的前4个字符的子字符串。
将该子字符串添加到集合实现中,例如HashSet,它将为您提供所需的内容。
答案 3 :(得分:-1)
public List<String> trimmer(List<String> x) {
Log.e("", Integer.toString(x.size()));
for (int i = 0; i < x.size(); i++) {
String s = x.get(i).toString();
String a = s.substring(6);
Log.e("after trim is?", a);
x.remove(i);
x.add(i, a);
}
// check if the element got added back
Log.e("Trimmer function", x.get(1));
return x;
}
这对您有所帮助!