多項式が係数/指数のペアの配列で表される多項式クラスを作成しようとしています。2 つの多項式を加算する add メソッドを作成しましたが、代わりに値が重複します。
public class Poly{
private static class Pair{
int coeff;
int exponent;
private Pair(){
this.coeff=coeff;
this.exponent=exponent;
}
private Pair(int coef, int exp){
exponent = exp;
coeff = coef;
}
}
int count=2;
private Pair[] poly; //creates an Array of coefficient/exponent pairs
public Poly(){
poly = new Pair[count];
for(int i=0;i<count;i++){
poly[i] = new Pair(0,0);
}
}
public Poly(int coeff1, int exp){
int i=0;
poly = new Pair[count];
for(i=0; i<count; i++){
poly[i]= new Pair(coeff1, exp);
}
count++;
}
private Poly (int exp) {
poly = new Pair[exp+1];
poly[0].exponent = exp;
poly[0].coeff=1;
}
**public Poly add(Poly q){**
Poly result = new Poly();
int j=0;
while(j<poly.length){
for(int i=0; i<q.poly.length; i++){
if(poly[j].exponent==q.poly[i].exponent){
result.poly[j].coeff= poly[j].coeff+q.poly[i].coeff;
result.poly[j].exponent =poly[j].exponent;
}
else if(poly[j].exponent!=q.poly[i].exponent && i<q.poly.length){
result.poly[j].coeff= q.poly[i].coeff;
result.poly[j].exponent =q.poly[i].exponent;
}
else if(poly[j].exponent!=q.poly[i].exponent && i==q.poly.length-1){
result.poly[j].coeff= poly[j].coeff;
result.poly[j].exponent =poly[j].exponent;
}
}
j++;
}
return result;
}
public String toString(){
String str = "";
for(int i=0; i<poly.length; i++){
if(poly[i].coeff==0){
str+="";
}
else{
str+="+" +poly[i].coeff +"x^"+poly[i].exponent;
}
}
return str;
}
}
5x^9+3x^8 を返すために、2 つの多項式 (5x^9) & (3x^8) の合計として値を取得しようとしています
public static void main(String[] args) {
Poly a =new Poly(5,9);
Poly b =new Poly(3,8);
System.out.println(a);
System.out.println(b);
System.out.println("the sum of the poly is: " +ab);
}
出力は
a=+5x^9+5x^9
b=+3x^8+3x^8
the sum of the poly is: +3x^8+3x^8