Advertisement
FacuValverdi

EDTP03.- Ejercicio 7 Unión alternada de Colas

Oct 4th, 2019
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.78 KB | None | 0 0
  1. import java.util.LinkedList;
  2. import java.util.Random;
  3. public class alternada {
  4.    
  5.     public static void main(String[] args) {
  6.         Random r= new Random();
  7.         LinkedList cola1= new LinkedList();
  8.         LinkedList cola2= new LinkedList();
  9.         LinkedList unionCola= new LinkedList();
  10.         int nu1= r.nextInt(30);
  11.         int nu2= r.nextInt(30);
  12.        
  13.         for(int i=1;i<4;i++) {
  14.             nu1=r.nextInt(30);
  15.             cola1.add(nu1);
  16.             nu2=r.nextInt(30);
  17.             cola2.add(nu2);
  18.             System.out.println("numeros primera lista "+ nu1);
  19.             System.out.println("numeros segunda lista "+ nu2); 
  20.     }
  21.         while(cola1.size()>0 & cola2.size()>0) {
  22.             unionCola.add((int) cola1.remove());
  23.             unionCola.add((int) cola2.remove());
  24.         }
  25.         while( unionCola.size()>0 ){
  26.             System.out.println("Dato: "+(int) unionCola.remove());
  27.         }
  28.     }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement