domingo, 14 de maio de 2017

ArrayList - o método min

Se era problema encontrar o menor elemento
dentro de um ArrayList de java, agora não é mais.
Quero lhe apresentar o método min da classe
Collections, este método retornará o menor
elemento dentro da lista não importando sua ordem.


Veja abaixo uma imagem do programa em execução:


Veja abaixo o código do programa:


import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

public class PROJETO {
     public static void main ( String args [ ] ) {
         J jht = new J ( );
         jht.textbackground ( jht.WHITE );
         jht.Moldura ( ( short ) 1, ( short ) 24, ( short ) 2, ( short ) 68 );
         jht.title ( " " );
         int i;
         //Declarando ArrayList com valor pré-determinado
        ArrayList < Integer > arrList = new ArrayList < > ( 36 );
        //Preenchendo o ArrayList com laço for
        for ( i = 1; i < 37; i++ ) {
             arrList.add ( i );
        }
        //Embaralhando o ArrayList com shuffle
        //Isto aqui é opcional
        Collections.shuffle ( arrList );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 24, ( short ) 3 );
         System.out.printf ( "ARRAYLIST - O MÉTODO MIN" );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 18, ( short ) 5 );
         System.out.printf ( "Abaixo a impressão normal do ArrayList" );
         // ////////////////////////////////////////////
         jht.textcolor ( jht.BLACK );
         for ( i = 0; i < arrList.size ( ); i++ ) {
              if ( i == 0 )
                   jht.gotoxy ( ( int ) 13, ( int ) 7 );
              if ( i == 12 )
                   jht.gotoxy ( ( int ) 13, ( int ) 8 );
              if ( i == 24 )
                   jht.gotoxy ( ( int ) 13, ( int ) 9 );
               System.out.printf ( "%3d", arrList.get ( i ) );
             System.out.print ( " " );
         }
         jht.getche ( );
         //Recuperando o menor elemento com método min
         // ////////////////////////////////////////////
         Object maior_objeto = Collections.min ( arrList );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( int ) 15, ( int ) 11 );
         System.out.print ("O menor objeto da lista é ==> ");
         jht.textcolor ( jht.LIGHTRED );
          System.out.print ( maior_objeto );
         // ////////////////////////////////////////////
         jht.textbackground ( jht.WHITE );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTBLUE );
         jht.gotoxy ( ( short ) 23, ( short ) 19 );
         System.out.printf ( "Por: " );
         jht.textcolor ( jht.LIGHTBLUE );
         System.out.printf ( "Samuel Lima" );
         jht.textcolor ( jht.BLACK );
         jht.gotoxy ( ( short ) 23, ( short ) 20 );
         System.out.printf ( "sa_sp10@hotmail.com" );
         jht.Sleep ( ( short ) 1800 );
         jht.textcolor ( jht.LIGHTRED );
         jht.gotoxy ( ( short ) 29, ( short ) 22 );
         System.out.printf ( "MUITO OBRIGADO" );
         jht.getche ( );
     }
}

Nenhum comentário:

Postar um comentário

Observação: somente um membro deste blog pode postar um comentário.