代码搜索:Best 开发教程
找到约 10,000 项符合「Best 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/483249/6601664
m qgate.m
function ret=Qgate(individuals,best,binary,sizepop,lenchrom)
% 根据中的量子门调整策略编写
% quantum gate
global delta
for i=1:sizepop
for j=1:sum(lenchrom)
A=individuals.c
www.eeworm.com/read/483249/6601665
m hgate.m
function ret=Hgate(individuals,best,binary,sizepop,lenchrom)
% 根据编写
% H gate
global maxg
www.eeworm.com/read/483249/6601669
asv quantum.asv
function quantum
% This is quantum genetic algorithm(QGA)
% In this function ,it fulfils quantum genetic algorithm
clc;
clear;
global sizepop lenchrom
global judge
global maxgen gen
www.eeworm.com/read/483249/6601670
asv qgate.asv
function ret=Qgate(individuals,best,sizepop,lenchrom)
% 根据中的量子门调整策略编写
% quantum gate
global delta
for i=1:sizepop
for j=1:sum(lenchrom)
A=individuals.chrom(2*
www.eeworm.com/read/483249/6601672
m quantum.m
function quantum
% This is quantum genetic algorithm(QGA)
% In this function ,it fulfils quantum genetic algorithm
clc;
clear;
global sizepop lenchrom
global judge
global maxgen gen
www.eeworm.com/read/483249/6601675
asv qgate2.asv
function ret=Qgate2(individuals,best,sizepop,lenchrom)
% 根据自编量子门调整策略编写
% quantum gate
global delta
for i=1:sizepop
for j=1:sum(lenchrom)
A=individuals.chrom(2*i-1,j); % α
www.eeworm.com/read/483249/6601679
m qgate2.m
function ret=Qgate2(individuals,best,binary,sizepop,lenchrom)
% 根据自编量子门调整策略编写
% quantum gate
% 适应度越大越好
global delta
for i=1:sizepop
for j=1:sum(lenchrom)
A=individuals.chrom(
www.eeworm.com/read/483249/6601680
m qgate1.m
function ret=Qgate1(individuals,best,binary,sizepop,lenchrom)
% 根据编写
% quantum gate ( another )
global maxgen g
www.eeworm.com/read/483249/6601681
asv qgate1.asv
function ret=Qgate1(individuals,best,sizepop,lenchrom)
% 根据编写
% quantum gate ( another )
global maxgen gen
f
www.eeworm.com/read/482262/6630956
pas format.pas
{
CTU Open Contest 2002
=====================
Sample solution for the problem: format
Martin Kacer, Oct 2002
}
Program Formatting;
Const MAXWORDS = 10200;
PENALTY = 500;
MAXLINE = 128;
V