2023-04-18 12:29:43 +02:00
|
|
|
public class outils {
|
|
|
|
protected outils(){
|
|
|
|
}
|
|
|
|
|
2023-04-18 18:38:32 +02:00
|
|
|
public static int[] reverse(int[] un_tableau) {
|
2023-04-18 12:29:43 +02:00
|
|
|
int taille = un_tableau.length;
|
|
|
|
|
|
|
|
int[] cette_copie;
|
|
|
|
cette_copie = new int[un_tableau.length];
|
|
|
|
int compteur=taille;
|
|
|
|
|
|
|
|
for(int j=0; j<cette_copie.length; j++){
|
|
|
|
cette_copie[j]=un_tableau[compteur-1];
|
|
|
|
compteur--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cette_copie;
|
|
|
|
}
|
|
|
|
|
2023-04-18 18:38:32 +02:00
|
|
|
public static int[] concatenate(int[] first_tab, int[] tab_to_add){
|
2023-04-18 12:29:43 +02:00
|
|
|
int taille = first_tab.length;
|
|
|
|
|
|
|
|
int[] tableau_temp = new int[taille+tab_to_add.length];
|
|
|
|
int compteur = 0;
|
|
|
|
|
|
|
|
if(first_tab != null){
|
|
|
|
for(int i=0;i<taille;i++){
|
|
|
|
tableau_temp[compteur]=first_tab[i];
|
|
|
|
compteur++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(tab_to_add != null){
|
|
|
|
for(int i=0;i<tab_to_add.length;i++){
|
|
|
|
tableau_temp[compteur]=tab_to_add[i];
|
|
|
|
compteur++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tableau_temp;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|