一、简介 1 遗传算法概述 遗传算法(Genetic Algorithm,GA)是进化计算的一部分,是模拟达尔文的遗传选择和自然淘汰的生物进化过程的计算模型,是一种通过模拟自然进化过程搜索最优解的方法。该算法简单、通用,鲁棒性强,适于并行处理。 2 遗传算法的特点和应用 遗传算法是一类可用于复杂系统 ...
分类:
编程语言 时间:
2021-06-20 18:49:44
阅读次数:
0
一、简介 基于matlab GUI RGB识别系统 二、源代码 function varargout = Color_Detect(varargin) % COLOR_DETECT MATLAB code for Color_Detect.fig % COLOR_DETECT, by itself, ...
分类:
其他好文 时间:
2021-06-20 18:08:15
阅读次数:
0
You are given an array aa of nn integers. Find the number of pairs (i,j)(i<j)where the sum of ai+ajai+aj is greater than or equal to l and less than o ...
分类:
编程语言 时间:
2021-06-13 10:56:21
阅读次数:
0
The pair sum of a pair (a,b) is equal to a + b. The maximum pair sum is the largest pair sum in a list of pairs. For example, if we have pairs (1,5), ...
分类:
其他好文 时间:
2021-06-13 09:41:48
阅读次数:
0
python k-means F:\PythonProject\K-Means import pandas as pd import numpy as np from sklearn.preprocessing import StandardScaler from sklearn.model_sel ...
分类:
编程语言 时间:
2021-05-24 16:18:04
阅读次数:
0
题目描述 A group of people are standing in a line. Each person has a distinct height. You would like to count the number of unordered pairs of people in t ...
分类:
其他好文 时间:
2021-04-13 12:06:43
阅读次数:
0
Problem 给定一棵树和若干个点对 \((u,v)\) 给出的树上最短路径,求满足 路径交仅有一个点 的 无序 路径对(即 \((a,b)\) 和 \((b,a)\) 算一次)。 Sol & Code 交仅为一个点只有两种情况:两条路径 LCA 在同一个点或不在同一个点。 分别计算。第一种使用容 ...
分类:
其他好文 时间:
2021-03-06 15:03:23
阅读次数:
0
Sexy primes are pairs of primes of the form (p, p+6), so-named since "sex" is the Latin word for "six". (Quoted from http://mathworld.wolfram.com/Sexy ...
分类:
其他好文 时间:
2021-02-20 11:45:24
阅读次数:
0
the Computing Research Repository (CoRR) 论文地址:https://arxiv.org/abs/1909.11898 代码地址:https://github.com/hongwang600/DocRed Abstract 在本文中,我们进一步应用预先训练的语言 ...
分类:
其他好文 时间:
2021-02-10 13:32:54
阅读次数:
0
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14331519.html 等价多米诺骨牌对的数量 题目链接:https://leetcode-cn.com/problems/number-of-equivalent-domino-pairs/ 题目 给你一 ...
分类:
其他好文 时间:
2021-01-27 13:43:12
阅读次数:
0