I need to merge two large string arrays into one and sort them on the whole.
As of I have looked, following are the ways:
Looping
using Array List, such as
List list = new ArrayList(Arrays.asList(a)); list.addAll(Arrays.asList(b));
Is there any specific way of handling Strings in Android such that it's efficient over Java library utils?
Can any one suggest me efficient way / alternate way of of doing this.
Note : Arrays span up to 8k elements each