代码搜索:如何学习 Best?
找到约 10,000 项符合「如何学习 Best?」的源代码
代码结果 10,000
www.eeworm.com/read/146544/12639912
m best.m
function [bestindividual,bestfit]=best(pop,fitvalue)
global popsize N length;
bestindividual=pop(1,:);
bestfit=fitvalue(1);
for i=2:popsize
if fitvalue(i)>bestfit % 最大的个体
bestindi
www.eeworm.com/read/200524/15431211
m best.m
% 求出群体中最大得适应值及其个体
%遗传算法子程序
%Name: best.m
%求出群体中适应值最大的值
function [bestindividual,bestfit]=best(pop,fitvalue)
[px,py]=size(pop);
bestindividual=pop(1,:);
bestfit=fitvalue(1);
for i=2:px;
if fit
www.eeworm.com/read/111667/15506177
gif best.gif
www.eeworm.com/read/111667/15506286
gif best.gif
www.eeworm.com/read/100052/15571600
c best.c
/*
* This file is part of John the Ripper password cracker,
* Copyright (c) 1996-99 by Solar Designer
*/
/*
* Benchmark to detect the best algorithm for a particular architecture.
*/
#ifdef __u
www.eeworm.com/read/100052/15571654
sh best.sh
#!/bin/sh
#
# This file is part of John the Ripper password cracker,
# Copyright (c) 1996-2000 by Solar Designer
#
[ $# -eq 4 ] || exit 1
MAKE=$1
DES_DEPEND=$2
MD5_DEPEND=$3
BF_DEPEND=$4
# Detect t
www.eeworm.com/read/105215/15674870
c best.c
/*
* This file is part of John the Ripper password cracker,
* Copyright (c) 1996-98 by Solar Designer
*/
/*
* Benchmark to detect the best algorithm for a particular architecture.
*/
#include
www.eeworm.com/read/105215/15674883
sh best.sh
#!/bin/sh
#
# This file is part of John the Ripper password cracker,
# Copyright (c) 1996-98 by Solar Designer
#
[ $# -eq 4 ] || exit 1
MAKE=$1
DES_DEPEND=$2
MD5_DEPEND=$3
BF_DEPEND=$4
# Detect the
www.eeworm.com/read/102813/15758192