Advertisement
urksiful

Listas Ordenada Nombres

Oct 9th, 2015
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.00 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3.  
  4. public class Class {
  5.     public Nodo inicio;
  6.    
  7.     public static void main(String[] args) {
  8.         Class p1 = new Class();
  9.         Scanner x = new Scanner(System.in);
  10.        
  11.         p1.inicio = null;
  12.         p1.inicio.ant = null;
  13.         String nombre;
  14.        
  15.         while(true){
  16.             nombre = x.nextLine();
  17.             p1.Inserta(nombre);
  18.         }
  19.        
  20.     }
  21.    
  22.     public void Inserta(String nom){
  23.         Nodo tmp = new Nodo();
  24.         tmp.nombre = nom;
  25.        
  26.         if(inicio == null || inicio.nombre.charAt(0) > tmp.nombre.charAt(0)){
  27.             inicio = tmp;
  28.             inicio.sig = inicio;
  29.         }else{
  30.             Nodo chalan1 = new Nodo(nom);
  31.            
  32.            
  33.         }
  34.        
  35.     }
  36.     public void ImprimeOrdenado(){
  37.    
  38.     }
  39. }
  40.  
  41. class Nodo{
  42.    
  43.     public String nombre;
  44.     public Nodo sig, ant;
  45.  
  46.     Nodo (){}
  47.     Nodo(String a){
  48.         nombre = a;
  49.         sig = ant = null;
  50.     }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement