Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Random;
- public class DemoList2 {
- public static void main(String[] args) {
- System.out.println("Demo de listas dobles");
- Random random = new Random();
- List<Integer> lista1 = new List<Integer>();
- List<Integer> lista2 = new List<Integer>();
- int num;
- System.out.printf("\nNumeros: ");
- for (int i = 0; i < 6; ++i) {
- num = random.nextInt(1000);
- System.out.printf("%d ", num);
- lista1.AddFirst(num);
- lista2.AddLast(num);
- }
- System.out.printf("\n\nLista1: ");
- lista1.Mostrar();
- System.out.printf("\nLista2: ");
- lista2.Mostrar();
- System.out.printf("\n\nExtrae: ");
- for (int i = 0; i < 3; ++i) {
- System.out.printf("%d ", lista1.RemoveFirst());
- System.out.printf("%d ", lista2.RemoveLast());
- }
- System.out.printf("\nLista1: ");
- lista1.Mostrar();
- System.out.printf("\nLista2: ");
- lista2.Mostrar();
- System.out.printf("\n\nExtrae el último hasta vaciar la lista: ");
- while (lista1.getCount() != 0) {
- System.out.printf("%d ", lista1.RemoveLast());
- }
- }
- }
Add Comment
Please, Sign In to add comment