Se era problema encontrar o maior elemento
dentro de um ArrayList de java, agora não é mais.
Quero lhe apresentar o método max da classe
Collections, este método retornará o maior
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:
dentro de um ArrayList de java, agora não é mais.
Quero lhe apresentar o método max da classe
Collections, este método retornará o maior
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 MAX" );
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 maior elemento com método max
//
////////////////////////////////////////////
Object maior_objeto = Collections.max ( arrList );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 15, ( int ) 11 );
System.out.print ("O maior
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.