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

搜索资源列表

  1. smartsuite-2.1.tar

    0下载:
  2. Linux下,硬盘S.M.A.R.T相关工具-Linux, hard disk S.M.A.R.T related tool
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:31129
    • 提供者:张羽飞
  1. fenshutongji

    0下载:
  2. 该文件是关于运动会分数统计的程序。问题描述: 参加运动会的有n个学校编号为1-----n。比赛分成m个男子项目和w个女子项目,项目编号分别为1---m和m+1---m+w。由于各项目参加人数差别较大,有些项目取前五名,得分顺序为7,5,3,2,1;有些项目取前三名,得分顺序为5,3,2。写一个统计程序产生得分报表。 基本要求: 产生总分报表,内容包括校号、男子团体总分、女子团体总分和团体总分。 测试数据: 对于n=4,m=3,w=2,编号为奇数的项目取前五名,编号为偶数的项目取前三名,设计一组实
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:49915
    • 提供者:神龙¤翼
  1. 300_encrypt

    0下载:
  2. 加密算法 Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives: - To generate an RSA key cryptest g - To encrypt and decrypt a string using RSA cryptest r - To calculate MD5, SHS, and RIPEMD-160 message digests:
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:389062
    • 提供者:Nikii
  1. yuesehuan

    0下载:
  2. 这是一个关于月色环的计算,输出的算法!用户输入人的个数,以及每个人的密码,以及开始的记数m,该程序将输出出列人的序号!-This is a part of the moonlight, the output algorithm! Users input the number, and each person's password, and the start of the counting m, the program will print out from the serial num
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1676
    • 提供者:刘六龙
  1. guandaotongxin

    0下载:
  2. 1、 了解系统调用pipe()的功能和实际原理 2、 编写一段程序,使用管道实现父子进程之间的通信 a) 使用系统调用fork()创建一个子进程 b) 子进程调用函数write()向父进程发送自己的进程ID和字符串” s sending a message to parent.\\n”。 c) 父进程调用函数read()通过管道读出子进程发来的消息,将消息输出屏幕,然后终止 -1, the understanding of the system call pipe () fu
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:4476
    • 提供者:witkey_eagle
  1. 75-dFile

    0下载:
  2. DES( Data Encryption Standard)算法,于1977年得到美国政府的正式许可,是一种用56位密钥来加密64位数据的方法。 IDEA是International Data Encryption Algorithm 的缩写,是1990年由瑞士联邦技术学院来学嘉X.J.Lai 和Massey提出的建议标准算法称作PES( Proposed Encryption Standard) 。Lai 和Massey 在1992 年进行了改进强化了抗差分分析的能力改称为IDEA 它
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:18881
    • 提供者:zengzl
  1. tubianli

    1下载:
  2. 图的遍历的演示(c 语言 数据结构课程设计题) /*定义图*/ typedef struct{ int V[M] int R[M][M] int vexnum }Graph /*创建图*/ void creatgraph(Graph *g,int n) { int i,j,r1,r2 g->vexnum=n /*顶点用i表示*/ for(i=1 i<=n i++) { g->V[i]=
  3. 所属分类:系统编程

    • 发布日期:2014-01-15
    • 文件大小:1405
    • 提供者:吉庆
  1. DSA

    0下载:
  2. Digital Signature Algorithm (DSA)是Schnorr和ElGamal签名算法的变种,被美国NIST作为DSS(DigitalSignature Standard)。算法中应用了下述参数: p:L bits长的素数。L是64的倍数,范围是512到1024; q:p - 1的160bits的素因子; g:g = h^((p-1)/q) mod p,h满足h < p - 1, h^((p-1)/q) mod p > 1; x:x
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:136954
    • 提供者:wildkaede
  1. PEChangeCode

    0下载:
  2. This project will never be finished because the code is lame and i m working on my import rebuilder. Sorry if i missed some comments and if it s not written in pure C++ (i mean in REAL Object).
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:50170
    • 提供者:kaite1010
  1. RSA解密和加密算法的实现和应用

    0下载:
  2. RSA算法 :首先, 找出三个数, p, q, r, 其中 p, q 是两个相异的质数, r 是与 (p-1)(q-1) 互质的数...... p, q, r 这三个数便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 这个 m 一定存在, 因为 r 与 (p-1)(q-1) 互质, 用辗转相除法就可以得到了..... 再来, 计算 n = pq....... m, n 这两个数便是 public_key ,编码过程是, 若资料为 a,
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1393
    • 提供者:胡康康
  1. firstGTK

    0下载:
  2. 一个基于GTK+的单词数值计算器,1、 按照规则计算单词的值,如果 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 26个字母(全部用大写)的值分别为 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26,如: WINJACK这个单词的值就为:W+I+N+J+A+C+K=23+9+14+1+3+11=71% HARDWORK=H+A+R+D+W+O+
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:1804
    • 提供者:
  1. simple-screenshot.tar

    0下载:
  2. 基于pygtk实现的简单的截图程序,以Screenshot at Y- m- d H: M: S.png的格式保存图片,图片格式为png。-Pygtk based on a simple screenshot program implemented to Screenshot at Y- m- d H: M: S.png format to save the picture, picture format is png.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-10
    • 文件大小:660
    • 提供者:noname
  1. SetTime

    0下载:
  2. 一款可以修改文件或文件夹的修改时间工具。 param: -v show information of file s time -c clone information of file time -m modify information of file time ---------------------------------------- -s source file or directory -d destion file or directory
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-14
    • 文件大小:3591
    • 提供者:MrZhang
  1. sjqpl

    0下载:
  2. 编制生成0~n(n≤255)的一个全排列的程序,可选择下列两个方法之一或自行设计另外方法: 方法1:从一个随机文件读取n+1字节数据d0, d1, L, dn。由预先取定的一个0~n的全排列P(比如,可为0~n的自然排列)开始,依次对i=n, n-1, L, 1,计算:j=di-1+di (mod i)交换P的第i项第j项(在此注意我们假定P从第0项开始)。 方法2:用一个随机函数产生m(m>n)字节数据d1, d2, L, dm。对d1(mod (n+1)), d2(mod (n
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-11
    • 文件大小:853
    • 提供者:susie
  1. armv7-m

    0下载:
  2. This module implements the 6pack protocol for kernel-based devices like TTY. It interfaces between a raw TTY and the kernel s AX.25 protocol layers.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-15
    • 文件大小:8217
    • 提供者:mgcangxj
  1. hide_final.m.tar

    0下载:
  2. stegnography s hiding part of gray scale image within rgb image
  3. 所属分类:CA program

    • 发布日期:2017-04-12
    • 文件大小:1260
    • 提供者:saurabh
  1. square

    0下载:
  2. 由WeiDai编写并放置在公共主机上 基于Paulo S.L.M. Barreto s开源实施-square.cpp- written and placed in the public domain by Wei Dai Based on Paulo S.L.M. Barreto s public domain implementation
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-13
    • 文件大小:2196
    • 提供者:ShichaoLiang
  1. svc

    0下载:
  2. net atm svc.c - A T M S V C sockets.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:4088
    • 提供者:genueqw
  1. TurbulentWindGenerator

    1下载:
  2. This submission allow the user for generation of three-dimensional turbulent wind fields, by employing a Kaimal spectrum and IEC-based coherence function. Furthermore, it is possible to export the generated wind fields as FAST-compatible .bts, in ord
  3. 所属分类:Windows Kernel

    • 发布日期:2016-01-18
    • 文件大小:6144
    • 提供者:Dron41
  1. Kruskal.m

    0下载:
  2. This code consists of the example of Kruskal s algorithm to find the minimum-spanning-tree which connects all the nodes through the edge with the least minimum edge values without creating the cycle.
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-12
    • 文件大小:872
    • 提供者:Peter
« 12 3 »
搜珍网 www.dssz.com