ylbtech-理论:混沌理论 混沌理论(Chaos theory)是一种兼具质性思考与量化分析的方法,用来探讨动态系统中(如:人口移动、化学反应、气象变化、社会行为等)必须用整体、连续的而不是单一的数据关系才能加以解释和预测的行为。 1.返回顶部 1、 中文名:混沌理论外文名:Chaos theo ...
分类:
其他好文 时间:
2020-04-04 11:52:26
阅读次数:
115
400GBASE-SR8 400G QSFP-DD ActiveOptical Cable has transceiver at its respective ends, a combination oftransmitter and receiver which is connected to a ...
分类:
其他好文 时间:
2020-04-01 13:07:43
阅读次数:
116
题目描述查看:https://leetcode-cn.com/problems/combination-sum/ 题目的意思是从一个给定的数组中,选出一些数,这些数的和是target。 1.回溯法 思路 回溯法有2个关键点,一个是已经选的数,另一个是还能选哪些数。 创建一个List<Integer> ...
分类:
其他好文 时间:
2020-03-31 10:43:56
阅读次数:
64
Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. ...
分类:
其他好文 时间:
2020-03-22 19:30:38
阅读次数:
66
给定一个 $n \times m$ 的方格图,每个格子可以被染成黑色或白色,且与其相邻的格子(上,下,左,右)中至多只有一个与其颜色相同。求方案数。 Solution 依稀记得当年在热身赛上碰到这个题,大家都说是 CF 原题,然后我跪了…… 对于 $(i,j)$,如果它左、左上、上的颜色确定,那么这 ...
分类:
其他好文 时间:
2020-03-21 18:09:51
阅读次数:
60
题意: 给定一个数组 $a$ ,数组中任意一个元素的因子数不超过 $7$ ,找出一个最短的子序列,满足该子序列之积为完全平方数。输出其长度。 数据范围:$1≤n≤10^5,1≤a_i≤10^6$ 分析: 首先,对于数组中的每个元素,如果其因子中包含有一个完全平方数,那么可以把该完全平方数除去,不影响 ...
分类:
其他好文 时间:
2020-03-17 00:06:21
阅读次数:
120
结合/融合/整合 (integration/ combination/ fusion)多个机器学习模型往往可以提高整体的预测能力。这是一种非常有效的提升手段,在多分类器系统(multi-classifier system)和集成学习(ensemble learning)中,融合都是最重要的一个步骤。 ...
分类:
其他好文 时间:
2020-03-15 13:39:22
阅读次数:
80
摄像头Camera 标定Calibration原理Theory cv2.cameraCalibration Pinhole camera calibration calls camera vision from 3D objects in the real world and transforms ...
分类:
其他好文 时间:
2020-03-13 19:05:25
阅读次数:
91
题目 In graph theory, an Eulerian path is a path in a graph which visits every edge exactly once. Similarly, an Eulerian circuit is an Eulerian path whi ...
分类:
其他好文 时间:
2020-02-29 20:51:39
阅读次数:
104
"题目" 题意:从1 9中选出k个数之和等于n,这个k个数不能有相同的,输出所有可能的k个数字的集合,结果也不能重复 题解:暴搜,从n开始,每次减去1 9中的某个数字,然后继续递归。要注意剪枝,比如1 9中的数字大于n/k的是不可能存在答案中的,如果n 的值小于sum[k]也是不会有答案的。sum[ ...
分类:
其他好文 时间:
2020-02-22 13:42:33
阅读次数:
45