Java健身功能

时间:2011-03-14 11:34:45

标签: java function fitness

我无法使用健身功能来处理我的代码。我最终得到的只是二进制字符串“10101”。

如果有人可以帮助我,我会非常感激,因为我已经花了很长时间在这上面而没有得到任何地方。

以下是代码:

public class Fitness{

public static void main(String args[]){

    ScalesSolution s = new ScalesSolution("10101");
    s.println();

    ArrayList<Double> weights = new ArrayList<Double>();

        weights.add(1.0);
        weights.add(2.0);
        weights.add(3.0);
        weights.add(4.0);
        weights.add(5.0);
        weights.add(6.0);
        weights.add(7.0);
        weights.add(17.0);
        weights.add(117.0);
        weights.add(3427.0);
        weights.add(5437.0);
        weights.add(567.0);
        weights.add(7567.0);

    ScalesSolution.scalesFitness(weights);
    System.out.println();

    }
}

适应度函数如下:

public class ScalesSolution{

    private static String scasol;
//Creates a new scales solution based on a string parameter
//The string parameter is checked to see if it contains all zeros and ones
//Otherwise the random binary string generator is used (n = length of parameter)
public ScalesSolution(String s)
{
    boolean ok = true;
    int n = s.length();
    for(int i=0;i<n;++i)
    {
        char si = s.charAt(i);
        if (si != '0' && si != '1') ok = false;
    }
    if (ok)
    {
        scasol = s;
    }
    else
    {
        scasol = RandomBinaryString(n);
    }
}
private static String RandomBinaryString(int n)
{
    String s = new String();

    for(int i = 0; i < s.length(); i++){
        CS2004.UI(0,1);
            if(i == 0){
                System.out.println(s + "0");
            }
            else if(i == 1){
                System.out.println(s + "1");
            }
    }

    return(s);
}
public ScalesSolution(int n) 
{
    scasol = RandomBinaryString(n); 
}
//This is the fitness function for the Scales problem
//This function returns -1 if the number of weights is less than
//the size of the current solution



public static double scalesFitness(ArrayList<Double> weights)
{   
    if (scasol.length() > weights.size()) return(-1);
    double lhs = 0.0,rhs = 0.0;

    double L = 0.0;
    double R = 0.0;

    for(int i = 0; i < scasol.length(); i++){
        if(i == 0){
            L = L += i;
        }
        if(i == 1){
            R = R += i;
        }
    }//end for

    int n = scasol.length();

    return(L-R);

    //return(Math.abs(lhs-rhs));

}
//Display the string without a new line
public void print()
{
    System.out.print(scasol);
}
//Display the string with a new line
public void println()
{
    print();
    System.out.println();
}
}

运行程序时,输出如下:

10101

无论我为ArrayList的值输入什么......

我已经绞尽脑汁待了好几个小时,而且仍然是非凡的 - 任何帮助都会非常感激!

非常感谢你。

米克。

编辑:代码现已更新,列出了完整的类 - 对于任何混淆道歉。

4 个答案:

答案 0 :(得分:2)

我不确切知道这段代码应该如何工作,但有一件对我来说可疑的内容如下:

for(int i = 0; i < scasol.length(); i++){
        if(i == 0){
        L = L += i;
    }
    if(i == 1){
        R = R += i;
    }
    }//end for

你永远不会检查scasol中的任何值;你应该吗?即

之类的东西
for(int i = 0; i < scasol.length(); i++){
            if(scasol.getCharAt(i) == '0'){
            L = L += 0;
        }
        else if(scasol.getCharAt(i) == '1'){
            R = R += 1;
        }
        }//end for

你现在写的方式,你是在比较迭代索引而不是那个索引的值。

其他人提到的另一个问题是你不打印结果:

ScalesSolution.scalesFitness(weights);
System.out.println();

应该是:

 double fitness = ScalesSolution.scalesFitness(weights);
System.out.println(fitness);

答案 1 :(得分:1)

我认为你的问题是空System.out.println();。我会尝试下一个:

double returnedValue= ScalesSolution.scalesFitness(weights);
System.out.println(returnedValue);

您需要将返回的值存储在变量中,然后将此变量传递给要使用该值的方法(在这种情况下,通过println方法将其打印到控制台标准输出)。

答案 2 :(得分:0)

代码完整吗?

一开始你打电话

ScalesSolution s = new ScalesSolution("10101");
s.println();

我无法找到构造函数或方法s.prinln();

但似乎你打印输入字符串 - 而不是任何二进制文件

答案 3 :(得分:0)

您无法使用甚至打印ScalesSolution.scalesFitness(weights);电话的结果,因此难怪它不会打印任何内容。