搜索资源列表
-
0下载:
An introduction to Genetic Algorithm Slides
-
-
0下载:
简介
银行家算法是一种最有代表性的避免死锁的算法。在避免死锁方法中允许进程动态地申请资源,但系
银行家算法
银行家算法
统在进行资源分配之前,应先计算此次分配资源的安全性,若分配不会导致系统进入不安全状态,则分配,否则等待。为实现银行家算法,系统必须设置若干数据结构。
要解释银行家算法,必须先解释操作系统安全状态和不安全状态。
安全序列是指一个进程序列{P1,…,Pn}是安全的,即对于每一个进程Pi(1≤i≤n),它以后尚需要的资源量不超过系统当前剩余
-
-
0下载:
PID算法 实现PID功能,对PID的实现过程做一下简单的介绍-PID algorithm PID function, PID implementation process to do something simple introduction
-
-
0下载:
插入排序的算法,摘自算法导论,并自己利用C#语言予以实现-Insertion sort algorithm, from Introduction to Algorithms and C# language to be realized
-
-
0下载:
选择排序,算法思想来自于算法导论第三版,并自己写了C#程序予以实现-Choose a sort algorithm thinking from the third edition of Introduction to Algorithms, and write your own C# program to be realized
-
-
0下载:
2007级在“计算机科学导论”的期末考试中有一道试题。下面请你看看那题目应该如何编写。
从键盘输入的一个大于 1 的整数,通过算法将该整数分解为若干因子的乘积。
输入:
一个正整数。
输出:
分解后的各个因子。
-2007 there is a questions in the " Introduction to Computer Science" in the final exam. Here is how you should
-
-
0下载:
Dijkstra(迪杰斯特拉)算法是典型的单源最短路径算法,用于计算一个节点到其他所有节点的最短路径。主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。Dijkstra算法是很有代表性的最短路径算法,在很多专业课程中都作为基本内容有详细的介绍,如数据结构,图论,运筹学等等。注意该算法要求图中不存在负权边。-Dijkstra (Dijkstra) algorithm is a typical single source shortest path algorithm for computi
-
-
0下载:
Neuronal.NET - An Easy Implementation of Neuronal Networks-Introduction
This article is going to explain how you can implement an easy to use neuronal network with the example of character recognition.
You need 3 things for a neuronal network:
-
-
0下载:
AI - Simple Genetic Algorithm (GA) to solve a card problem-Introduction
This article describes how to solve a logic problem using a Genetic Algorithm. It assumes no prior knowledge of GAs. In fact, half of this article is dedicated to explaining th
-