CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - 算法 报告

搜索资源列表

  1. 252542787

    0下载:
  2. 题 目: 编程计算磁头移动的总柱面数和总寻道时间(扫描算法) 初始条件: 随机产生柱面数,磁头每道移动时间,磁头移动方向,访问序列等参数。 要求完成的主要任务: (包括课程设计工作量及其技术要求,以及说明书撰写等具体要求) 1.要求编程计算磁头移动的总柱面数和总寻道时间。 2.设计报告内容应说明: ⑴课程设计目的与功能; ⑵需求分析,数据结构或模块说明(功能与框图); (3)运行结果与运行情况分析; (4)自我评价与总结: 1.你认为你完成的设计哪些地
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1.54kb
    • 提供者:王鑫
  1. 8086smallcase

    0下载:
  2. 这是8086中用c语言实现加减乘除等算法以及相应的实验报告,这是我们的课程所做的作业-c language used arithmetic algorithm as well as the corresponding experimental report This is our doing operations
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:150.16kb
    • 提供者:陈银桃
  1. polybios00

    0下载:
  2. polybios 加密算法课程设计报告 (含JAVA vc++两种语言)
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:105.81kb
    • 提供者:杨桥梁
  1. 实验三实验报告

    0下载:
  2. 操作系统中的动态分区算法-operating system as a dynamic partitioning algorithm
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:6.7kb
    • 提供者:李文涛
  1. RSA

    1下载:
  2. RSA算法的实验报告,有源码、流程图、时间复杂度分析等。-RSA algorithm experimental reports, source code, flowcharts, time complexity analysis.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2016-08-14
    • 文件大小:58.64kb
    • 提供者:caixu
  1. Cryptographylabreport

    0下载:
  2. 是大学信息安全方向的密码学课程的4个实验报告,包括古典密码,对称密码,非对称密码,HASH算法-The direction of the University Information Security Cryptography course four lab reports, including classical cryptography, symmetric key, asymmetric cryptography, HASH algorithm
  3. 所属分类:Network Security

    • 发布日期:2017-04-16
    • 文件大小:40.97kb
    • 提供者:陆风
  1. bank

    0下载:
  2. 设计内容包括银行家算法和安全性算法,以及用VC界面实现输出.并实现了课本97页的例题,内附实验报告-Design elements include banker' s algorithm, and security algorithms, and the VC output interface implementation. And achieve a textbook example of 97, enclosing the experimental report
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-08
    • 文件大小:136.02kb
    • 提供者:郎郎
  1. md5source

    0下载:
  2. MD5算法的相关资料,包括王晓云教授的报告和RFC标准文档-MD5 algorithm for relevant information, including the report of Professor Wang Xiaoyun and RFC standards documents
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-29
    • 文件大小:336.6kb
    • 提供者:jackli
  1. OSexperiment

    1下载:
  2. 内存分配的GUI显示算法 分配的方式就是常见的三种 首次适配 最佳适配和邻近适配 还包括一个实验报告 适合做课程设计用-Memory allocation algorithm of the GUI shows the distribution of three common way to best fit the first time, and adjacent Adapter Adapter report also includes an experimental design suitabl
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-28
    • 文件大小:188.06kb
    • 提供者:姚云翔
  1. OpenMP_exercise

    1下载:
  2. 对于几个流行的算法(prefix sum,matrix multiplication,Gaussian elimination,Sieve of Eratosthenes)的串行算法和openMP并行算法的代码,以及性能测试的实验报告-For several popular algorithms (prefix sum, matrix multiplication, Gaussian elimination, Sieve of Eratosthenes) of the serial algori
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:234.43kb
    • 提供者:luoang
  1. DES

    0下载:
  2. DES算法实验报告和代码 1.输入名字,需8个字母,不足的补叉,多余的舍去 2.将字符按ASC2码值转化为二进制,存在数值(指针)中 3.对明文做IP置换(函数) 4.将转换后的数值分成两组,赋给L0,R0,执行下列运算L1—R0,R1-L0.....重复16轮 5.将结果L0R0合并至一个数值,做IP输出-DES algorithm and code an experimental report. Enter the name of eight letters take l
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-27
    • 文件大小:13.84kb
    • 提供者:jhp627
  1. RSA

    1下载:
  2. RSA算法实验报告和代码 1.选取两个素数p,q(不可相差悬殊) 2.计算n=pq,f(n)=(p-1)(q-1) 3.选取e,满足1<e<f(n),则gcd(e,f(n))=1 4.计算d,满足de=1 mod f(n)。一般d>=[n的四分之一方],(e,n)为公钥,(p,q,d)为私钥,将明文0,1序列分组,使每组十进制小于n。c=[m的e次方] mod n,m=[c的d次方] mod n。-RSA algorithm and code an experi
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-24
    • 文件大小:80.17kb
    • 提供者:jhp627
  1. MD5-chengxu

    0下载:
  2. md5算法的实现,用vc++开发,一个实验,但是可以实现加解密,挺好的一个程序,配合刚才的报告。-md5 algorithm implementation, using vc++ development, an experiment, but the encryption and decryption can be achieved, in very good shape a program to meet the earlier report.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-08
    • 文件大小:35.39kb
    • 提供者:zhang liang
  1. RSA

    1下载:
  2. 通过编写程序实现了公钥密码算法RSA的加密与解密功能,并进行了一定的优化,内含报告。-Achieved through the preparation process RSA public key cryptographic algorithm for encryption and decryption functions, and make a certain amount of optimization, containing the report.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-02
    • 文件大小:379.79kb
    • 提供者:李莉
  1. jiami

    0下载:
  2. 应用加密算法和认证技术.ECB模式和CBC模式的加密过程.有两种模式的加密源代码和课程设计报告。-Application of encryption algorithms and authentication techniques. ECB mode and CBC mode encryption. There are two modes of encryption source code and program design report.
  3. 所属分类:CA program

    • 发布日期:2017-04-02
    • 文件大小:61.91kb
    • 提供者:Nina
  1. 2020

    0下载:
  2. (含有实验要求和实验报告) 时间片轮转调度算法实现进程调度.完成单处理机系统中的进程调度. 包括以下内容: 进程控制块的内容,进程控制块的组成方式;进程创建和进程调度;主函数对进程测试-Rotation scheduling algorithm for time slicing process scheduling. Completed the process of single-processor systems scheduling. Include the following:
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-08
    • 文件大小:62.63kb
    • 提供者:kenjey
  1. cfz

    0下载:
  2. 【设计题目】Linux二级文件系统设计【开发语言及实现平台或实验环境】C++/VC++【设计要求】理解Linux的文件系统的组织;掌握常用的数据结构;系统采用两级目录,其中第一级对应于用户账号,第二级对应于用户帐号下的文件 使用文件来模拟外存,进行数据结构设计和操作算法的设计,实现一个文件系统并实现基本的文件操作(为了简便文件系统,不考虑文件共享,文件系统安全以及管道文件与设备文件等特殊内容)。要求:1、对程序的每一部分要有详细的设计分析说明 2、程序执行的每个步骤要有具体的提示内容或输出3、源
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:5.18kb
    • 提供者:王跃
  1. IDEA--jiamijiemi

    0下载:
  2. IDEA加密解密算法的程序,可以正确运行。内附技术文档、实验报告。-IDEA encryption and decryption program that can run correctly. Containing technical documentation, test report.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-05
    • 文件大小:100.03kb
    • 提供者:刘飞
  1. aes

    0下载:
  2. AES算法,实现对文件加密。包含密码学课程报告 class CRijndael { private: int Nk,Nr,round long Total_Round,Cur_Round char *SourceFileName,*TargetFileName CString source,*target,save CFile Source,Target byte (* State)[4],*w[4],*key[4] publ
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-03-29
    • 文件大小:279.7kb
    • 提供者:fff
  1. RSA 算法

    1下载:
  2. rsa加密算法 附带实验报告和测试代码非常详细 有注释(RSA encryption algorithm with experimental report and test code is very detailed and annotated)
  3. 所属分类:加密解密

    • 发布日期:2020-11-25
    • 文件大小:15kb
    • 提供者:XCYJ
« 12 3 »
搜珍网 www.dssz.com