标签:android 移动开发 冒泡排序 simpledateformat
最近在项目中需要将读取的数据按照时间的降序进行排序。
具体的步骤如下:
1.读取数据,存入List中
2.取出数据中的时间戳,由String转换成Date
3.使用冒泡排序对List中元素按照Date进行排序
具体代码如下:
//将List按照时间倒序排列 @SuppressLint("SimpleDateFormat") private List<TestEntity> invertOrderList(List<TestEntity> L){ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date d1; Date d2; TestEntity temp_r = new TestEntity(); //做一个冒泡排序,大的在数组的前列 for(int i=0; i<L.size()-1; i++){ for(int j=i+1; j<L.size();j++){ ParsePosition pos1 = new ParsePosition(0); ParsePosition pos2 = new ParsePosition(0); d1 = sdf.parse(L.get(i).getDate(), pos1); d2 = sdf.parse(L.get(j).getDate(), pos2); if(d1.before(d2)){//如果队前日期靠前,调换顺序 temp_r = L.get(i); L.set(i, L.get(j)); L.set(j, temp_r); } } } return L; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:android 移动开发 冒泡排序 simpledateformat
原文地址:http://blog.csdn.net/gagalaha/article/details/47448859