-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.java
166 lines (142 loc) · 5.54 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import java.util.ArrayList;
public class Main {
private static ArrayList<String> listaNomes = new ArrayList<String>();
public static void main(String[] args){
adicionarPessoas();
System.out.println(listaNomes);
removerPessoa(2);
System.out.println(listaNomes);
System.out.println("Lucas está na lista? " + estaNaLista("Lucas"));
System.out.println("Tamanho da lista: " + tamanhoLista());
ArrayList<Integer> listaInteiros1 = new ArrayList<Integer>();
listaInteiros1.add(5);
listaInteiros1.add(3);
listaInteiros1.add(13);
listaInteiros1.add(10);
listaInteiros1.add(1);
System.out.println("Lista 1: " + listaInteiros1);
soma(listaInteiros1);
ArrayList<Integer> listaInteiros2 = new ArrayList<Integer>();
listaInteiros2.add(5);
listaInteiros2.add(19);
listaInteiros2.add(10);
listaInteiros2.add(5);
listaInteiros2.add(10);
System.out.println("Lista 2: " + listaInteiros2);
System.out.println(intArrayToBooleanArray(listaInteiros1, listaInteiros2));
System.out.println(interseccaoArrays(listaInteiros1, listaInteiros2));
System.out.println(uniaoArrays(listaInteiros1, listaInteiros2));
System.out.println("Troca Maior/Menor lista 1: " + trocaMaiorMenor(listaInteiros1));
System.out.println("Troca Maior/Menor lista 2: " + trocaMaiorMenor(listaInteiros2));
System.out.println("ImparesEsquerdaParesDireita: " + imparesEsquerdaParesDireita(listaInteiros1));
System.out.println("ImparesEsquerdaParesDireita: " + imparesEsquerdaParesDireita(listaInteiros2));
System.out.println("Numero em binario: " + intToBin(31));
System.out.println("Ordenando lista: " + ordenaArrayCrescente(listaInteiros1));
}
public static void adicionarPessoas(){
listaNomes.add("Lucas");
listaNomes.add("Henrique");
listaNomes.add("Paula");
listaNomes.add("Marcus");
listaNomes.add("Julia");
}
public static void removerPessoa(int i){
listaNomes.remove(i);
}
public static boolean estaNaLista(String nome){
return listaNomes.contains(nome);
}
public static int tamanhoLista(){
return listaNomes.size();
}
public static void soma (ArrayList<Integer> lista){
int total = 0;
for (int i = 0;i < lista.size(); i++){
total += lista.get(i);
}
System.out.println("Total da soma: " + total);
}
public static ArrayList<Boolean> intArrayToBooleanArray (ArrayList<Integer> listaA, ArrayList<Integer> listaB){
ArrayList<Boolean> listaC = new ArrayList<Boolean>();
if (listaA.size() == listaB.size()){
for (int i = 0; i < listaA.size(); i++){
listaC.add (listaA.get(i) == listaB.get(i));
}
}
return listaC;
}
public static ArrayList<Integer> interseccaoArrays (ArrayList<Integer> listaA, ArrayList<Integer> listaB){
ArrayList<Integer> listaC = new ArrayList<Integer>();
for (int i = 0; i < listaA.size(); i++){
if (listaB.contains(listaA.get(i)) && !listaC.contains(listaA.get(i))){
listaC.add(listaA.get(i));
}
}
return listaC;
}
public static ArrayList<Integer> uniaoArrays (ArrayList<Integer> listaA, ArrayList<Integer> listaB){
ArrayList<Integer> listaC = new ArrayList<Integer>();
listaC.addAll(listaA);
for (int i = 0; i < listaB.size(); i++){
if (!listaC.contains(listaB.get(i))){
listaC.add(listaB.get(i));
}
}
return listaC;
}
public static ArrayList<Integer> trocaMaiorMenor (ArrayList<Integer> listaA){
if (listaA.size() > 0){
int maior = listaA.get(0);
int menor = listaA.get(0);
int indiceMaior = 0;
int indiceMenor = 0;
for (int i = 1; i < listaA.size(); i++){
if (maior < listaA.get(i)){
maior = listaA.get(i);
indiceMaior = i;
}
if (menor > listaA.get(i)){
menor = listaA.get(i);
indiceMenor = i;
}
}
listaA.set(indiceMenor, maior);
listaA.set(indiceMaior, menor);
}
return listaA;
}
public static ArrayList<Integer> imparesEsquerdaParesDireita (ArrayList<Integer> listaA).
{
ArrayList<Integer> listaAux = new ArrayList<Integer>();
for (int i = 0; i < listaA.size(); i++){
if (listaA.get(i) % 2 != 0)
listaAux.add(0, listaA.get(i));
else
listaAux.add(listaA.get(i));
}
return listaAux;
}
public static String intToBin (int numero){
String aux = "";
while (numero > 0){
if (numero % 2 == 1)
aux = "1" + aux;
else
aux = "0" + aux;
numero = numero / 2;
}
return aux;
}
public static ArrayList<Integer> ordenaArrayCrescente (ArrayList<Integer> listaA){
int aux;
for (int i = 0; i < listaA.size(); i++){
for (int j = 0; j < listaA.size(); j++)
if (listaA.get(i) < listaA.get(j)){
aux = listaA.get(i);
listaA.set(i, listaA.get(j));
listaA.set(j, aux);
}
}
return listaA;
}
}