CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - IDEA

搜索资源列表

  1. process_attemper

    1下载:
  2. 1、 :编写并调试一个模拟的进程调度程序,采用“最高优先数优先”调度算法对进程进行调度。 “最高优先数优先调度算法的基本思想是把CPU分配给就绪队列中优先数最高的进程。尝试静态优先数与动态优先数两种方法: a) 静态优先数是指优先数在整个进程运行期间不再改变。优先数可以在数据输入时指定,也可以根据到达顺序、运行时间确定。 b) 动态优先数是指进程的优先数在创建进程时可以给定一个初始值,并且可以按一定原则修改优先数。例如进程获得一次CPU后就将其优先数减少1。或者进程等待的时间超过某一时限
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:365976
    • 提供者:huiting_liu
  1. xianxingbiao

    0下载:
  2. 实习题 [问题描述] 1. 设顺序表中的数据元素递增有序,将插入到顺序表的适当位置上,是该表仍然有序。 [输入] 初始顺序表,插入字符。 [输出] 插入x后线性表的结果 [存储结构] 采用顺序存储结构 [算法的基本思想] 建立一个递增顺序表,插入一个数值并移动元素,使其仍然有序。 程序如下: #include \"iostream.h\" #include <malloc.h> #define LIST_INTI_SIZE 1
  3. 所属分类:软件工程

    • 发布日期:2014-01-15
    • 文件大小:8550
    • 提供者:Demonic
  1. tu

    0下载:
  2. [输入] 图的顶点个数N,图中顶点之间的关系及起点A和终点B [输出] 若A到B无路径,则输出“There is no path” 否则输出A到B路径上个顶点 [存储结构] 图采用邻接矩阵的方式存储。 [算法的基本思想] 采用广度优先搜索的方法,从顶点A开始,依次访问与A邻接的顶点VA1,VA2,...,VAK, 访问遍之后,若没有访问B,则继续访问与VA1邻接的顶点VA11,VA12,...,VA1M,再访问与VA2邻接顶点...,如此下去,直至找到B,最先到达
  3. 所属分类:其它

    • 发布日期:2014-01-15
    • 文件大小:9954
    • 提供者:Demonic
  1. shu

    0下载:
  2. 1.[问题描述] 编写递归算法,计算二叉树中叶子结点的数目 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g . [输出] 按中序序列输出,输出的结果为;dbheaficg并计算出二叉树中叶子结点的数目为4 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,中序遍历二叉树时,先遍厉左子树,后遍厉右子树,最后访问根结点。根据左右子树的最后一个
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:8133
    • 提供者:Demonic
  1. shu2

    0下载:
  2. 2.[问题描述] 编写递归算法,在二叉树中求位于先序序列中第K个位置的结点 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g 。输入要求的位置 [输出] 若二叉树不空,按先序序列输出,求出所求位置的结点 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,先序遍历二叉树时,先遍厉左子树,后遍厉右子树,最后访问根结点并计算出二叉树中叶子结点
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:7096
    • 提供者:Demonic
  1. neipaixu

    0下载:
  2. [问题描述] 将N个关键字去整数的记录进行整序, 以使所有关键字为非负数的记录排在关键字为负数的记录之前,要求使用最少的附加空间,且算法的时间复杂度为O(N) [输入] 待排序记录个数,各关键字的值。 [输出] 关键字从正负分开,正数在前 [存储结构] 待排序记录顺序存储。 [算法的基本思想] 快速排序算法每次任取一个记录的关键字为标准,将其余记录分为两组将,N个关键字去整数的记录进行整序, 以使所有关键字为非负数的记录排在关键字为负数的记录之前。 #in
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:7602
    • 提供者:Demonic
  1. MC145159PLL

    0下载:
  2. 基于MC145159的PLL频率合成器设计与实现 介绍了锁相环路频率合成器的基本原理,分析了集成锁相环芯片M C 145159的工作特性,给出了集成锁相环芯片M C 145159的一个应用实例,为高频频率合成器的设计提供了一个较好的思路.测试结果证明了设计的合理性与实用性,系统频率稳定度优于10-7.-MC145159 PLL frequency synthesizer design and realization of PLL frequency synthesizer the basic
  3. 所属分类:软件工程

    • 发布日期:2014-01-15
    • 文件大小:192323
    • 提供者:liming
  1. XHTMLTipOfTheDay_demo

    0下载:
  2. My Product Manager recently told me that he wanted to improve the friendliness of our products. He went on to explain that he liked the idea of displaying a tip of the day when the application starts, like what WinZip does
  3. 所属分类:按钮控件

    • 发布日期:2008-10-13
    • 文件大小:70707
    • 提供者:高修成
  1. svm-python

    0下载:
  2. This document contains a general overview in the first few sections as well as a more detailed reference in later sections for SVMpython. If you re already familiar with SVMpython, it s possible to get a pretty good idea of how to use the package mer
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:294584
    • 提供者:王强
  1. Wavelet-algorithm-vc-realization

    0下载:
  2. Good idea, realization wavelet algorithm
  3. 所属分类:汇编语言

    • 发布日期:2008-10-13
    • 文件大小:181605
    • 提供者:yangfan
  1. ImageSegment

    1下载:
  2. 图像分割程序,采用水平集演化的思想,实现偏微分方程中的GAC模型。Image segment source code(GAC model),which adopt the idea of level set evolving.
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2014-01-16
    • 文件大小:10833
    • 提供者:li_ya
  1. BuildingRobustSimulation-basedFiltersforEvolvingDa

    0下载:
  2. The need for accurate monitoring and analysis of sequential data arises in many scientic, industrial and nancial problems. Although the Kalman lter is effective in the linear-Gaussian case, new methods of dealing with sequential data are requi
  3. 所属分类:文件操作

    • 发布日期:2014-01-16
    • 文件大小:419574
    • 提供者:阳关
  1. ICA_intro

    0下载:
  2. ICA介绍课件。There has been a wide discussion about the application of Independence Component Analysis (ICA) in Signal Processing, Neural Computation and Finance, first introduced as a novel tool to separate blind sources in a mixed signal. The Basic idea
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1041333
    • 提供者:aaaaaaa
  1. BasicTime

    0下载:
  2. You all might have used CTime or CTimeSpan to manipulate the system timer. Here is an article to show you how your system timer works. I will give you an idea of port communications behind the system clock manipulations. Those who are a little biased
  3. 所属分类:按钮控件

    • 发布日期:2008-10-13
    • 文件大小:29903
    • 提供者:lg
  1. weightpercent

    0下载:
  2. Returns weighted percentiles of a sample given the weight vector w % The idea is to give more emphasis in some examples of data as compared to % others by giving more weight. For example, we could give lower weights to % the outliers. % The
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:2074
    • 提供者:Jack
  1. driverdev_src4

    0下载:
  2. This the fourth edition of the Writing Device Drivers articles. This article will introduce the idea of device stacks and how devices interact with each other. We will use the previously created example device driver to demonstrate this topic. To do
  3. 所属分类:驱动编程

    • 发布日期:2008-10-13
    • 文件大小:32259
    • 提供者:shi
  1. driverdev_src3

    0下载:
  2. This the third edition of the Writing Device Drivers articles. The first article helped to simply get you acquainted with device drivers and a simple framework for developing a device driver for NT. The second tutorial attempted to show to use IOCTLs
  3. 所属分类:驱动编程

    • 发布日期:2008-10-13
    • 文件大小:22703
    • 提供者:shi
  1. MatlabSharedLib_demo

    0下载:
  2. Introduction Some times it is required that we build a shared library (DLL) from an m-file. M-files are functions that are written in Matlab editor and can be used from Matlab command prompt. In m-files, we employ Matlab built-in functions or toolb
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:65783
    • 提供者:vipjvs
  1. icsiboost-0.3.tar

    0下载:
  2. Boosting is a meta-learning approach that aims at combining an ensemble of weak classifiers to form a strong classifier. Adaptive Boosting (Adaboost) implements this idea as a greedy search for a linear combination of classifiers by overweighting the
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:116681
    • 提供者:njustyw
  1. IDEA1

    0下载:
  2. 这是IDEA加密算法的源程序.希望对这方面学习的有所帮助。
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:2572
    • 提供者:成军
« 1 2 ... 13 14 15 16 17 1819 20 21 22 23 ... 50 »
搜珍网 www.dssz.com