0

我的函数的目标是在两个 Vector 之间使用 1 点交叉函数来获得一个新的混合“Son” Vector,其中包含第一个 Vector 中的一些元素和第二个 Vector 中的一些元素。

public Vector crossover(int Sol1,int Sol2){  
  int size;
  Vector sol1 = new Vector();
  Vector sol2 = new Vector();
  sol1 = (Vector) allpop.get(Sol1);
  sol2 = (Vector) allpop.get(Sol2);
  int crosspoint = (int) sol1.size()/2 ;
  Vector son =  new Vector();
      son= (Vector) sol1.clone() ;
      if (sol1.size() < sol2.size())
            size = sol1.size();
      else size = sol2.size();

  for(int j=(crosspoint-1);j<size;j++)
    son.set(j,sol2.get(j));
         return son;
                                          }

有时它工作得很好,有时它给我“java.lang.ArrayIndexOutOfBoundsException”错误..一些想法?

4

3 回答 3

0

附加一个调试器,看看它失败的值。我敢打赌,当等于或小于 1时,您的crosspoint值等于 0 ,因此索引等于 -1,这显然会引发异常。sol1.size()j

于 2013-09-04T16:20:55.500 回答
0

也许试试int crosspoint = (int)(sol1.size() / 2);

另外:crosspoint - 1需要>= 0

于 2013-09-17T09:43:16.703 回答
0

已经修复:)在这里我与你分享答案:)

    public Vector crossover(Vector sot1, Vector sot2) {
    Vector sol1;
    Vector sol2;
    sol1 = copi(sot1);
    sol2 = copi(sot2);
    sol1.removeAll(Collections.singleton(null));
    sol2.removeAll(Collections.singleton(null));
    // int crosspoint = (int) sol1.size()/2 ;
    Vector son = new Vector();
    boolean awal = true;
    int size;
    if (sol1.size() < sol2.size()) {
        size = sol1.size();
        son.setSize(sol1.size());
        Collections.copy(son, sol1);
    } else {
        size = sol2.size();
        son.setSize(sol2.size());
        Collections.copy(son, sol2);
        awal = false;
    }
    int crosspoint = (int) (Math.random() * ((size * 2) / 3)) + 1;
    System.out.println("cross point :" + crosspoint);
    int j = crosspoint;
    if (awal == true) {
        for (j = crosspoint; j < size; j++) {
            //son.removeElementAt(j);
            // son.add(j, sol2.get(j));
            son.set(j, (Capaciter_n_objet) sol2.get(j));
        }
    } else {
        for (j = crosspoint; j < size; j++) {
            // son.removeElementAt(j);
            //son.add(j, sol1.get(j));
            son.set(j, (Capaciter_n_objet) sol1.get(j));
        }
    }
    son.removeAll(Collections.singleton(null));
    correction(son);
    son.removeAll(Collections.singleton(null));
    /* for(int i=0;i<non_packed_objet.size();i++)
     * System.out.println("non packed object : "+non_packed_objet.get(i));*/
    return son;
}
于 2013-09-17T15:05:39.473 回答