搜索资源列表
transductive-SVM
- 对直推式支持向量机的较为经典的介绍,包含一些直推式学习的思想,算法-Direct Push on Support Vector Machine, introduced a more classic, contains a number of Direct Push the idea of learning, algorithm
883
- 功能: 用回溯算法求解883喝酒问题。注意: 该程序尽可能用与算法一致的思路实现算法, 力求简单明了, 注重算法的清晰性-Function: The retrospective algorithm 883 alcohol problem. NOTE: The procedures and algorithms as much as possible consistent with the idea of algorithm to simple algorithms focus on the cl
HuffmanCode
- 本算法的作用是利用建立的huffman编码进行编码和译码。首先要建立huffman树,其主要的思想是权大的外结点靠近根,权小的远离根。大体的算法是在n个结点中不断的选取两个相对小的结点建立huffman树,直到全部结点都在huffman树中。-The role of this algorithm is the use of established code huffman encoding and decoding. First of all, to establish huffman tree
SumOfSub
- 给定一个正整数的集合,子集和问题要求在这个正整数集合中,找出其和不超过正整数C的最大和数的子集,且设计的算法是基于近似算法的基本思想。-Given a set of positive integers, a subset of the requirements and problems in this set of positive integers, to find out and no more than the largest positive integer C, a subset of
23456787654321
- 问题一:设a[0:n-1]是已排好序的数组。请改写二分搜索算法,使得当搜索元素x不在数组中时,返回小于x的最大元素位置i和大于x的最小元素位置j,当搜索元素在数组中时,i和j相同,均为x在数组中的位置。 问题二:采用分治策略实现对n个元素进行排序的合并排序算法,其基本思想是:将待排序元素分成大小大致相同的2个子集合,分别对2个子集合进行排序,最终将排好序的子集合合并成为所要求的排好序的集合。 问题三:给定n个矩阵{A1,A2,A3,……,An},其中,Ai与Ai+1是可乘的,i=1,2,
markov
- 一个基于马尔可夫链算法的思想编写的自动写文章的程序,输入一篇文章后,可以自动的输出一篇文章。-An algorithm based on Markov chains prepared by the idea of automatic procedures for writing articles, enter an article, you can automatically output of an article.
SearchbasedAlgorithmsCaseStudy
- 讲述搜索算法,从枚举,DFS等许多例子,通过许多有关搜索的经典例子,来分析其中的思想,层层深入-About the search algorithm, from the enumeration, DFS, and many other examples, through a number of classic examples of the search, to analyze the idea of layers of in-depth
IDEA
- 利用IDEA加密算法进行文件加密,保证信息在网络中的安全传输-IDEA encryption algorithm used for file encryption, to ensure the security of information transmitted in the network
Russinov
- Nussinov算法,预测rna二级结构-This program implements Nussinov algorithm on predicting RNA structure from RNA sequence using dynamic programming approach. The baisic idea is similiar with Smith-Waterman algorithm, obtaining optimal result about predicting RNA
IDEA
- IDEA算法 C实现 希望能给大家带来帮助。谢谢~-IDEA algorithm C to achieve We hope you help. Thank you ~
LEACH
- 关于无线传感器网络的路由算法研究,在能量均衡上的经典LEACH算法,用matlab进行的仿真,能够实现!-Abstract: The distributed wireless sensor net work and the technol ogy of wireless communicati on could realize the subsidence monit oring and measuring in coalmine goaf . One of the i mportant r
OSDiskDispatchDemo
- 磁盘调度算法的模拟实现,我大学时的一个os作业,包含fcfs sstf scan cscan nstepscan 这几种算法,源码很简单主要还是算法的思想-Disk scheduling algorithm simulation to achieve, a os my college work, including fcfs sstf scan cscan nstepscan these types of algorithms, source code is very simple idea o
Quicksort
- 快速排序算法基本思想 通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。一般设置数组的第一个数为需要比较的值,把整个数组分为小于和大于该数的两部分。 我自己在写这个算法的时候,卡住了好几回,总是边界值出现问题。下面的这个实现加入了注释,希望对你能够有所帮助。-Basic idea of quick sort algorithm
PAM
- PAM(Partitioning Around Medoid,围绕中心点的划分)算法是是划分算法中一种很重要的算法,有时也称为k-中心点算法,是指用中心点来代表一个簇。PAM算法最早由Kaufman和Rousseevw提出,Medoid的意思就是位于中心位置的对象。PAM算法的目的是对n个数据对象给出k个划分。PAM算法的基本思想:PAM算法的目的是对成员集合D中的N个数据对象给出k个划分,形成k个簇,在每个簇中随机选取1个成员设置为中心点,然后在每一步中,对输入数据集中目前还不是中心点的成员根
taobao_code
- 用于识别淘宝验证码的一个小思路,没有具体的算法,但是能够体现出具体解析的思路-, There is no specific algorithm used to identify a small idea of Taobao verification code, but can reflect the ideas of specific analytical
grahams-scan
- 此为凸包的graham的scan算法,思路清晰,易实现。-This is the convex hull of graham scan algorithm, the idea is clear and easy to implement.
yichuan
- 通过自然选择、遗传、变异等作用机制,实现各个个体的适应性的提高。这一点体现了自然界中"物竞天择、适者生存"进化过程。1962年Holland教授首次提出了GA算法的思想,从而吸引了大批的研究者,迅速推广到优化、搜索、机器学习等方面,并奠定了坚实的理论基础。-Individuals through the mechanism of natural selection, genetic mutation, adaptation to improve. This is evidenced by the
Page-permutation-algorithm-
- 虚拟存储请求页式存储管理中几种基本页面置换算法的基本思想和实现过程-The basic idea and implementation process of several basic page replacement algorithms in virtual storage request page storage management,
grammar
- 第1章 算法引论 1.1 算法与程序 1.2 表达算法的抽象机制 1.3 描述算法 1.4 算法复杂性分析 小结 习题 第2章 递归与分治策略 2.1 速归的概念 2.2 分治法的基本思想 2.3 二分搜索技术 2.4 大整数的乘法 2.5 Strassen矩阵乘法 2.6 棋盘覆盖 2.7 合并排序 2.8 快速排序 2.9 线性时间选
.idea
- :设计一个按优先数调度算法实现处理器调度的程序 提示: (1)假定系统有 5 个进程,每个进程用一个 PCB 来代表。((1) design a program scheduler for scheduling processors according to the priority scheduling algorithm: (1) assume that the system has 5 processes and each process is represented by a PCB.)