给出一系列未排序的字符,例如'a', 'c', 'd', 'b', 'a', 'b'
。使用空格式排序和删除重复字符的最佳方法是什么,并将空白空格移动到数组的末尾。例如'a', 'b', 'c', 'd', ' ', ' ';
没有在Java中使用额外的缓冲区,内存或集合api?
答案 0 :(得分:1)
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if(s.toString().trim().length()==1){
mAirport = new AsyncTaskAirport(search_airport.getEditableText().toString().substring(0, 1));
mAirport.execute((Void) null);
}
}