How to implement ordered crossover
问题 So I have two parents ABCDE EDCBA can I just select a subset from both: From parent one: ACD From parent two: EDC Then I copy parent one into offspring one but copy the selected subset with parent twos order so: Offspring one: DBCAE Offspring two: CDEBA 回答1: To answer the title question: http://www.eecs.tufts.edu/~jfinke02/jmona/xref/jmona/example/tsp/crossover/OrderedCrossoverFunction.html: 1 /** 2 * OrderedCrossoverFunction.java 3 * 4 * Copyright 2009, 2010 Jeffrey Finkelstein 5 * 6 * This