搜索结果

找到约 250 项符合 CHAR 的查询结果

加密解密 用SHA算法实现对任意文件的hash摘要

用SHA算法实现对任意文件的hash摘要,并且把hash摘要值(至少为160bit)存入另一个文件,形如: hash inputfile hashvaluefile 说明:SHA算法的实现至少为160bit,或者可以选择256,384或者512的,可以查阅相关资料,按照标准来实现(hash的算法是否正确,可以和网上的标准算法对比,用相同的输入看是否能够得到相 ...
https://www.eeworm.com/dl/519/463970.html
下载: 164
查看: 1158

数据结构 猜数游戏

猜数游戏,用char型存储输入的数,筛选功能强,欢迎大家指点,songhshen@126.com
https://www.eeworm.com/dl/654/464563.html
下载: 27
查看: 1034

数据结构 二叉树的建立与遍历.中序建立一棵二叉树

二叉树的建立与遍历.中序建立一棵二叉树,每个结点的数据域数据为char型,并按三种方式遍历(前序,中序,后序)。输出遍历结果。
https://www.eeworm.com/dl/654/470320.html
下载: 171
查看: 1055

*行业应用 client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> i

client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct sockaddr_in address int result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_fami ...
https://www.eeworm.com/dl/631/471268.html
下载: 76
查看: 1036

数值算法/人工智能 KMP字符串匹配的c实现

KMP字符串匹配的c实现,测试字符串为char a[20]="abcdefghijk" char b[20]="abcdefgg" 取各位数字的算法,最大有效测试数据长整形最N=100000000 贪婪算法:已知若干面值的人名币,如何找零钱,使张数最小,测试面值a[4]={25,10,5,1} 快速排序C++实现 ...
https://www.eeworm.com/dl/518/476277.html
下载: 133
查看: 1051

汇编语言 编写一个程序

编写一个程序,输出基本数据类型char, short, int, long, float, double和指针类型void *, char *, short *, int *, long *, float *, double *的数据类型的长度。
https://www.eeworm.com/dl/644/485500.html
下载: 128
查看: 1017

单片机开发 内容摘要: LHD6000主板主芯片程序 ISD1730时序说明: 参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明.

内容摘要: LHD6000主板主芯片程序 ISD1730时序说明: 参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明. 应先发"RESET"命令再发"PWR_UP"命令,后发"RESET"命令可能不正常工作. 1730最高地址只有0xFF,所以对指定地址的操作函数的参数使用了"unsigned char"类型, 17系列的其它型号可能才用得到"unsigne ...
https://www.eeworm.com/dl/648/488679.html
下载: 105
查看: 1085

技术书籍 c语言深度剖析

第一章关键字...................................................................................................................................9 1.1,最宽恒大量的关键字----auto..........................................................................................11 1.2,最快的关键字---- register. ...
https://www.eeworm.com/dl/502642.html
下载: 4
查看: 110

Linux/uClinux/Unix编程 嵌入式烧写

1、 把内核解压到根目录下   tar jxvf  xxxxxxxx.tar.bz2   2、 把demo.c 放到drivers/char目录下   3修改Kconfig、Makefile文件,如下
https://www.eeworm.com/dl/507477.html
下载: 2
查看: 23

PCB图/BOM单/原理图 单片机课程设计

#include<reg52.h>  #include<intrins.h> #define LED P0 sbit KEY0=P2^0;  //定义按键输入端口 A    sbit KEY1=P2^1;  //定义按键输入端口 B    sbit KEY2=P2^2;  //定义按键输入端口 C unsigned int Led_table[8]={0xfe,0xfc,0xf8,0xf0,0xe0,0xc0,0x80,0x00}; char Led_num=0 ...
https://www.eeworm.com/dl/508925.html
下载: 1
查看: 26