how to merge two ordered list of objects?
Posted
by
bhavna raghuvanshi
on Stack Overflow
See other posts from Stack Overflow
or by bhavna raghuvanshi
Published on 2010-06-16T08:12:02Z
Indexed on
2014/05/28
15:28 UTC
Read the original article
Hit count: 140
java
public class ListMerge
{
public static void main( String[] args)
{
Scanner input = new Scanner(System.in);
System.out.println ("Input length of arraylist 1:");
int n = input.nextInt();
ArrayList x = new ArrayList();
ArrayList y = new ArrayList();
for (int i = 0; i < n; i++)
{
System.out.println ("Input x[ " + i +"] :" );
x.add(new Integer(i));
}
System.out.println ("Input length of arraylist 2:");
int m = input.nextInt();
for (int i = 0; i < m; i++)
{
System.out.println ("Input y[ " + i +"] :" );
y.add(new Integer(i));
}
List<Integer> all = new ArrayList<Integer>();
all.addAll(x);
all.addAll(y);
System.out.println(all);
}
}
I did this but its not taking values from user. pls tell me why....
© Stack Overflow or respective owner