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

搜索资源列表

  1. 遗传算法优化神经网络XOR.rar

    1下载:
  2. 遗传算法优化神经网络的C源程序
  3. 所属分类:数值算法/人工智能

    • 发布日期:
    • 文件大小:35.74kb
    • 提供者:
  1. xor

    0下载:
  2. RSA算法实现(经典) 1.   首先要把文件夹中的rsa.c文件拷贝到运行工具(如TURBOC2)下文件夹名为INCLUDE的文件夹中。   (在本机上已经做过,所以不需要做)     2.   RSA的加密对象为C盘下文件名为CODE.txt的前8位(如果没有一定要在C盘下建立一个文件名为CODE.txt的文件,  把要加密的数据写到文件里),加密后在C盘下生成一个文件名为RSACIPER.txt文件。   (在本机上已经做过,所以不需要做以上二步)
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:8.43kb
    • 提供者:
  1. c++BPxor

    0下载:
  2. 用c语言实现的bp神经网络实现异或功能,比较好用 -use the C Language bp neural network XOR functions, better quality
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:16.37kb
    • 提供者:刘哲
  1. XOR

    0下载:
  2. c++解决xor问题(bp网络)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:2.11kb
    • 提供者:xiaocui
  1. 遗传算法优化神经网络XOR.rar

    0下载:
  2. 遗传算法优化神经网络的C源程序, Heredity algorithm optimization nerve network C source program
  3. 所属分类:AI-NN-PR

    • 发布日期:2015-12-22
    • 文件大小:4.47kb
    • 提供者:陈宁
  1. xor.rar

    0下载:
  2. 异或运算,c++语言代码,用于CRC校验,XOR operator, c++ language code for the CRC checksum
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-24
    • 文件大小:21.23kb
    • 提供者:张天河
  1. bpnet

    0下载:
  2. 用人工神经网络的bp的方法解决异或问题-Using artificial neural network bp means to solve the XOR problem
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-09
    • 文件大小:34.45kb
    • 提供者:
  1. BP_XOR

    0下载:
  2. 自己写的一个简单的神经网络(BP)算法,用来解决异或(XOR)问题,初学神经网络的人可以下来看!-Wrote it myself a simple neural network (BP) algorithm, to solve the exclusive-OR (XOR) problem, learning neural network can look at the next!
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-01
    • 文件大小:104.23kb
    • 提供者:chencailong
  1. xor

    0下载:
  2. c语言的图形使用 及一些运算 常用函数-c language computing graphics and some commonly used functions
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:1.63kb
    • 提供者:平春
  1. lock

    0下载:
  2. 用Visual Studio 2003编的文件加密程序,能对文件进行二进制读入,再和密码做异或,保存。版本一-Visual Studio 2003 for use of file encryption program, can read a binary file, and then do XOR and password, save. Version 1.0
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-16
    • 文件大小:3.52mb
    • 提供者:zcn
  1. FileEncode

    0下载:
  2. 自己编写的用C语言简单的异或算法所编写的短小精悍的文件加密程序!实现了密码加密功能!已经运行通过。非常经典,绝对是学习C语言的算法的好例子。有小又精才是最好的-I have written using C language simple XOR algorithm dapper prepared file encryption program! The realization of the encryption password! Has been running through. Very c
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-02
    • 文件大小:186.06kb
    • 提供者:但是借
  1. xor.c

    1下载:
  2. Simple crypting program for files which uses arbitrary XOR key.
  3. 所属分类:CA program

    • 发布日期:2014-09-25
    • 文件大小:681byte
    • 提供者:animist
  1. 20081020_7f3716f4c544a423e5746Mg7s0kSLgTy

    0下载:
  2. exe作成服务启动的代码,简单的c语言编写,是实现程序(木马)自启动的最好方式,能够逃脱杀毒软件的监视! -A remote administratio/bot source. Get command through either http or irc. Can execute a command on a specific time, uses simple XOR encryption for command file transfer. Also has embeded a repl
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-15
    • 文件大小:3.45mb
    • 提供者:jmjjhjmk
  1. XOR

    0下载:
  2. 有道难题:另类异或 描述: 对于普通的异或,其实是二进制的无进位的加法。 这里我们定义一种另类的异或A op B, op是一个仅由^组成的字符串,如果op中包含n个^,那么A op B表示A和B之间进行n+1进制的无进位的加法。 下图展示了3 ^ 5 和 4 ^^ 5的计算过程: 0 1 1 (3) ^ 1 0 1 (5) --------- 1 1 0 (6) 0 1 1 (4) ^^ 0 1 2 (5) --------- 0
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:620byte
    • 提供者:xhflovemy
  1. shamir

    0下载:
  2. This program makes some operations on the polynomials, such as addition, multiplication and calculating Lagrange polynomials. It also finds a key for encryption of a text and then does encryption process by using xor (exclusive-OR) of each character
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:3kb
    • 提供者:zephrion
  1. xor

    0下载:
  2. (pbc)Pairing-Based Cryptography是实现双线性对运算的 函數库,但没有异或XOR函數,我参考编写了一个,希望对大家有 帮助. 编译命令: gcc -o xor xor.c -I /usr/local/include/pbc -L /usr/local/lib -Wl,-rpath /usr/local/lib -lpbc 运 行 :./xor <a.param-(Pbc) Pairing-Based Cryptography bilinear
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-06
    • 文件大小:1.03kb
    • 提供者:edmun
  1. xor

    0下载:
  2. xor.c : Multiple Devices driver for Linux.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-13
    • 文件大小:2.19kb
    • 提供者:nerxsmv
  1. C#超级通信调试工具源码

    4下载:
  2. 1.串口,TCP服务端/客户端,UDP服务端/客户端通讯调试 2.支持Hex,ASCII,UTF8,GB2312编码调试 3.接收数据可通过右键菜单一键计算Hex对应的数值 4.字节计算器/检验值计算器(CRC16,自定义多项式CRC16,XOR) 5.串口超级终端 6.Socket通信监视器 7:Ping调试(1. Serial port, TCP server / client, UDP server / client communication debugging 2. Su
  3. 所属分类:Windows编程

    • 发布日期:2017-12-25
    • 文件大小:2mb
    • 提供者:Frank_1990
  1. C#利用异或算法为数字加密

    0下载:
  2. windows,C#利用异或算法为数字加密(C# uses XOR algorithm for digital encryption)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-21
    • 文件大小:53kb
    • 提供者:jin.l
  1. C#通讯调试工具v3.0源码

    2下载:
  2. 开发工具:VS2010 语言:C# .NET Framework2.0 本软件主要功能如下: 1.串口,TCP服务端/客户端,UDP服务端/客户端通讯调试; 2.支持Hex,ASCII两种格式的命令调试; 3.接收数据可通过右键菜单一键计算Hex对应的数值; 4.字节计算器/检验值计算器(CRC16,自定义多项式CRC16,XOR)。 具体可看我的博文:http://blog.csdn.net/sqqyq/article/details/10012183 下一版本计划加入
  3. 所属分类:Windows编程

    • 发布日期:2018-05-06
    • 文件大小:1.41mb
    • 提供者:cocojava
« 12 3 4 5 6 »
搜珍网 www.dssz.com