两点交叉操作

时间:2011-08-22 09:43:26

标签: c++ genetic-algorithm crossover

我一直在尝试在遗传算法中编写用于两点交叉操作的代码。首先选择两个随机基因位置。在那之后,两条染色体交换它们的基因,这些基因位于随机数中,称为genelocation1和genelocatıon2。

for example  First Gene [0.3,0.2,0.4,0,0.1,0.5,0.7]
             Second Gene [0.25,0.6,0.45,0.15,0.80,0.9,0.85]
        rndm    genelocation1=3
           rdnm  gnelocation2 =5
child Gene1 [0.3,0.2,0.4,0.15,0.80,0.5,0.7]
      Gene2 [0.25, 0.6, 0.45, 0, 0.1,0.9,0.85]

我的问题是:由于两个数字是随机生成的,我无法定义像数组[genelocation2-genelocation1]这样的数组。我怎样才能解决问题。这是我关于两点交叉的全部代码。指针可能是一个解决方案,但我不擅长指针。

以下是代码:

void Xover (int mother,int father)
{
    int tempo;
    int Rndmgenelocation1=(rand()%ActivityNumber);
    int Rndmgenelocation2=(rand()%ActivityNumber);

    if (Rndmgenelocation1>Rndmgenelocation2)//sure that 2>1
    {
        tempo=Rndmgenelocation1;
        Rndmgenelocation1=Rndmgenelocation2;
        Rndmgenelocation2=tempo;
    }

    int size=(Rndmgenelocation2-Rndmgenelocation1);
    int Temp1[size];//this makes an error

    int ppp=Rndmgenelocation1;
    for (int pp=Rndmgenelocation1;pp<Rndmgenelocation2;pp++)
    {
        Temp1[pp]=Sol_list[father].Chromosome[ppp];
        ppp++;
    }
    int pppx=Rndmgenelocation1;
    for (int ppx=Rndmgenelocation1;ppx<Rndmgenelocation2;ppx++)
    {
        Sol_list[father].Chromosome[ppx]=Sol_list[mother].Chromosome[pppx];
        pppx++;
    }
    int ppplx=Rndmgenelocation1;
    for (int pplx=Rndmgenelocation1;pplx<Rndmgenelocation2;pplx++)
    {
        Sol_list[father].Chromosome[pplx]=Temp1[ppplx];
        ppplx++;
    }

    return;
}

2 个答案:

答案 0 :(得分:3)

您无法在堆栈上定义可变大小的数组。 你可以用

int *Temp1=new int[size]

然后你不能忘记致电

delete[] Temp1;

在你的功能结束时!

编辑:

我没有在下面测试我的代码,但以下内容应该以更有效(更易理解)的方式执行您想要的操作:

#include <algorithm>
void Xover (int mother,int father)
{
    int Rndmgenelocation1=(rand()%ActivityNumber);
    int Rndmgenelocation2=(rand()%ActivityNumber);

    if (Rndmgenelocation1>Rndmgenelocation2)//sure that 2>1
    {
        std::swap(Rndmgenelocation1,Rndmgenelocation2);
    }

    for (int pp=Rndmgenelocation1;pp<Rndmgenelocation2;pp++)
    {
        std::swap(Sol_list[father].Chromosome[pp],Sol_list[mother].Chromosome[pp]);
    }
    return;
}

EDIT2:

我刚刚发现here另一种更好的方法 - STL实现了一种随时可用的交叉算法。使用:

#include <algorithm>
void Xover (int mother,int father)
{
    int Rndmgenelocation1=(rand()%ActivityNumber);
    int Rndmgenelocation2=(rand()%ActivityNumber);

    if (Rndmgenelocation1>Rndmgenelocation2)//sure that 2>1
    {
        std::swap(Rndmgenelocation1,Rndmgenelocation2);
    }

    std::swap_ranges(
        Sol_list[father].Chromosome[Rndmgenelocation1],
        Sol_list[father].Chromosome[Rndmgenelocation2],
        Sol_list[mother].Chromosome[Rndmgenelocation1]
    );

    return;
}

答案 1 :(得分:0)

我猜你一定不能使用g++作为编译器。如果是这样,您可以使用std::vector而不是数组。只需做

std::vector<int> array(size);

现在,您可以通过operator[]语法将其视为“普通”数组。忘记在指针上调用delete也不用担心内存泄漏。