搜索结果
查询Tags标签: Algorithm,共有 90条记录-
Algorithm第四版算法 C++实现(十二)——使用邻接矩阵法构造无向图
图是一种非常常见的数学模型。图在各种应用中都有非常重要的作用 我们今天要介绍的图叫做无向图,在无向图中,边仅仅起到链接两个顶点的作用。这是一种简单的图模型。 术语解释: 自环:一条链接一个顶点与他自身的边平行边(无向图):两条及以上关联同一对顶点的无向边…
2021/8/7 17:06:47 人评论 次浏览 -
mysql ALTER TABLE 并发控制
并发控制Concurrency ControlFor ALTER TABLE operations that support it, you can use the LOCK clause to control the level ofconcurrent reads and writes on a table while it is being altered. Specifying a non-default value for thisclause enables you to re…
2021/8/3 19:06:00 人评论 次浏览 -
mysql ALTER TABLE 并发控制
并发控制Concurrency ControlFor ALTER TABLE operations that support it, you can use the LOCK clause to control the level ofconcurrent reads and writes on a table while it is being altered. Specifying a non-default value for thisclause enables you to re…
2021/8/3 19:06:00 人评论 次浏览 -
Benelux Algorithm Programming Contest 2020部分题解
牛客题目链接 F-Generator Grid 这题我在看了解析后突然理解了它的做法,用最小生成树的算法。 那么如何处理发电站呢?可以将发电站看做额外的节点,将发电站与可以建的地方相连。以示例1为例子,在1建立发电站的费用就是1到4的边长,那么就可以将问题转化为一个最小生成…
2021/7/27 23:06:21 人评论 次浏览 -
Benelux Algorithm Programming Contest 2020部分题解
牛客题目链接 F-Generator Grid 这题我在看了解析后突然理解了它的做法,用最小生成树的算法。 那么如何处理发电站呢?可以将发电站看做额外的节点,将发电站与可以建的地方相连。以示例1为例子,在1建立发电站的费用就是1到4的边长,那么就可以将问题转化为一个最小生成…
2021/7/27 23:06:21 人评论 次浏览 -
(EM算法)The EM Algorithm
EM是我一直想深入学习的算法之一,第一次听说是在NLP课中的HMM那一节,为了解决HMM的参数估计问题,使用了EM算法。在之后的MT中的词对齐中也用到了。在Mitchell的书中也提到EM可以用于贝叶斯网络中。 下面主要介绍EM的整个推导过程。 1. Jensen不等式回顾优化理论中的一些…
2021/7/27 20:08:01 人评论 次浏览 -
(EM算法)The EM Algorithm
EM是我一直想深入学习的算法之一,第一次听说是在NLP课中的HMM那一节,为了解决HMM的参数估计问题,使用了EM算法。在之后的MT中的词对齐中也用到了。在Mitchell的书中也提到EM可以用于贝叶斯网络中。 下面主要介绍EM的整个推导过程。 1. Jensen不等式回顾优化理论中的一些…
2021/7/27 20:08:01 人评论 次浏览 -
NJU Static Program Analysis 06: Data Flow Analysis IV
NJU Static Program Analysis 06: Data Flow Analysis IV AbstractUnderstand the functional view of iterative algorithm The definitions of lattice and complete lattice Understand the fixed-point theorem How to summarize may and must analyses in lattices T…
2021/7/18 6:07:47 人评论 次浏览 -
NJU Static Program Analysis 06: Data Flow Analysis IV
NJU Static Program Analysis 06: Data Flow Analysis IV AbstractUnderstand the functional view of iterative algorithm The definitions of lattice and complete lattice Understand the fixed-point theorem How to summarize may and must analyses in lattices T…
2021/7/18 6:07:47 人评论 次浏览 -
Tensorflow调试经验---“Failed to get convolution algorithm. This is probably because cuDNN failed to ini”
今天使用tensorflow2.0出现faile,我笔记本是Y7000p,显卡是2060显存就有6G所以在使用的时候出现问题: Failed to get convolution algorithm. This is probably because cuDNN failed to initialize解决方案: #tensorflow1.X版本 from tensorflow.compat.v1 import Con…
2021/6/29 6:24:10 人评论 次浏览 -
用Java语言编写的迷宫小游戏软件
可查看本项目的github 源码链接,撒娇打滚求 star 哦~~ღ( ・ᴗ・ ` )比心 本仓库代码是经过 eclipse 编译运行过的,一般情况下将本仓库代码下载下来之后,使用 eclipse 编译直接可以运行。 软件总体设计 软件总体框架 该软件主要分为如下三个模块:参数设置模块 按钮功能…
2021/6/17 14:29:23 人评论 次浏览 -
Algorithm:【Algorithm算法进阶之路】之数据结构基础知识
Algorithm:【Algorithm算法进阶之路】之数据结构基础知识相关文章Algorithm:【Algorithm算法进阶之路】之数据结构二十多种算法演示Algorithm:【Algorithm算法进阶之路】之十大经典排序算法Algorithm:【Algorithm算法进阶之路】之数据结构基础知识Algorithm:【Algori…
2021/6/16 1:22:49 人评论 次浏览 -
Algorithm:【Algorithm算法进阶之路】之数据结构二十多种算法演示
Algorithm:【Algorithm算法进阶之路】之数据结构二十多种算法演示目录 一、数据结构算法 1、顺序表 2、链表 3、栈和队列 4、串的模式匹配 5、稀疏矩阵 6、广义表 7、二叉树 8、图 9、存储管理 10、静态查找 11、动态查找 12、内部排序 13、外部排序相关文章Algorithm…
2021/6/16 1:21:47 人评论 次浏览 -
Algorithm:【Algorithm算法进阶之路】之十大经典排序算法
Algorithm:【Algorithm算法进阶之路】之十大经典排序算法相关文章Algorithm:【Algorithm算法进阶之路】之数据结构二十多种算法演示Algorithm:【Algorithm算法进阶之路】之十大经典排序算法Algorithm:【Algorithm算法进阶之路】之数据结构基础知识Algorithm:【Algori…
2021/6/16 1:21:45 人评论 次浏览 -
ML之XGBoost:XGBoost参数调优的优秀外文翻译—《XGBoost中的参数调优完整指南(带python中的代码)》(一)
ML之XGBoost:XGBoost参数调优的优秀外文翻译—《XGBoost中的参数调优完整指南(带python中的代码)》(一)目录 概述/Overview 介绍/Introduction 你应该知道什么/What should you know ? 目录/Table of Contents 1. xgboost的优势/The XGBoost Advantage原文题目:《Compl…
2021/6/15 20:33:41 人评论 次浏览