-
Notifications
You must be signed in to change notification settings - Fork 0
/
TasBinaire.java
110 lines (94 loc) · 2.39 KB
/
TasBinaire.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
package TP3;
public class TasBinaire {
/*
* TAS MIN
*
* Pour TAS MAX -> il faut simplement changer le signe de
* while(Tas[positionAcutelle] > Tas[parent(positionAcutelle)]) qui est dans fonction inserer
* Integer.MAX_VALUE a la place de Integer.MIN_VALUE
*
*/
private int tailleMax;
private int nbCle;
private int[] Tas;
/*
* Si l'utilisateur saisie la taille < 1
* Alors on lui affectera un tas binaire de taille 20 par defaut
*/
public TasBinaire(){
this.tailleMax=20;
this.nbCle=0;
this.Tas = new int[this.tailleMax];
}
/*
*
* Si la taille est <1 alors une exception est leve
* Sinon on leve une exception
*
* Tas a une taille de 'taille+1' pour contrer les nombres a virgules lors de la division pour retrouver le pere ou le fils
*/
public TasBinaire(int taille)
throws NombreCleException {
if(taille<1)
throw new NombreCleException();
else{
this.tailleMax=taille;
this.nbCle=0;
this.Tas = new int[taille+1];
this.Tas[0] = Integer.MIN_VALUE;
}
}
private int parent(int pos){
return pos / 2;
}
/*
* On echange permute la valeur de deux cases du tableau
*/
private void echange(int fpos, int spos) {
int temp;
temp = Tas[fpos];
Tas[fpos] = Tas[spos];
Tas[spos] = temp;
}
/*
* verifie chaque relation entre pere et fils pour voir si les conditions sont bonnes pour echanger ou non
*
*/
public void inserer(int element) throws LimiteTableauException {
if(nbCle<=tailleMax){
nbCle++;
Tas[nbCle]=element;
int positionAcutelle = nbCle;
while(getCleTas(positionAcutelle) > getCleTas(parent(positionAcutelle))){
echange(positionAcutelle, parent(positionAcutelle));
positionAcutelle = parent(positionAcutelle);
}
}
else{
throw new LimiteTableauException();
}
}
private int enfantGauche(int pos){
return (pos * 2);
}
private int enfantDroite(int pos){
return (pos * 2) + 1;
}
public int getTailleMax(){
return this.tailleMax;
}
public int getNbCle(){
return this.nbCle;
}
public int getCleTas(int nEff){
if(nEff>=0 && nEff<nbCle)
return this.Tas[nEff];
return -1;
}
public String toString(){
String s = new String("| ");
for(int i=1; i<=tailleMax; i++)
s = s + Tas[i] + " | ";
return s;
}
}