虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Main

  • gcc编译的des

    gcc编译的des,3des加密解密算法。使用方法见Main.c中的注释。

    标签: gcc des 编译

    上传时间: 2013-12-18

    上传用户:PresidentHuang

  • 用c语言实现的des加密解密程序源码

    用c语言实现的des加密解密程序源码,包含一个des头文件和一个des源文件以及一个Main函数源文件

    标签: des c语言 加密 解密

    上传时间: 2013-12-28

    上传用户:lmeeworm

  • evc与mapx mobile 在PDA上开发的GPS接收器。你的电脑上最好有evc++4.0和ppc2003模拟器

    evc与mapx mobile 在PDA上开发的GPS接收器。你的电脑上最好有evc++4.0和ppc2003模拟器,还有mapx mobile,没有都可以去官方网站上下载-AES with MapX mobile PDA development of the GIS system, the Main function of MapInfo are included in the inside. Your computer is the best and ppc2003 AES Simulator 4.0, MapX mobile, can not go on the official website of the download

    标签: evc mobile 2003 mapx

    上传时间: 2016-12-06

    上传用户:asddsd

  • 河內塔問題 #include<stdio.h> #include<stdlib.h> int fun_a(int) void fun_b(int,int,int,in

    河內塔問題 #include<stdio.h> #include<stdlib.h> int fun_a(int) void fun_b(int,int,int,int) int Main(void) { int n int option printf("題目二:河內塔問題\n") printf("請輸入要搬移的圓盤數目\n") scanf("%d",&n) printf("最少搬移的次數為%d次\n",fun_a(n)) printf("是否顯示移動過程? 是請輸入1,否則輸入0\n") scanf("%d",&option) if(option==1) { fun_b(n,1,2,3) } system("pause") return 0 } int fun_a(int n) { int sum1=2,sum2=0,i for(i=n i>1 i--) { sum1=sum1*2 } sum2=sum1-1 return sum2 } void fun_b(int n,int left,int mid,int right) { if(n==1) printf("把第%d個盤子從第%d座塔移動到第%d座塔\n",n,left,right) else { fun_b(n-1,left,right,mid) printf("把第%d個盤子從第%d座塔移動到第%d座塔\n",n,left,right) fun_b(n-1,mid,left,right) } }

    标签: int include stdlib fun_a

    上传时间: 2016-12-08

    上传用户:努力努力再努力

  • 线程描述。主程序创建两个线程myThread1 和 myThread2

    线程描述。主程序创建两个线程myThread1 和 myThread2 ,每个线程打印一句话。使用pthread_create(&id,NULL,(void *) thread,NULL)完成。 先定义每个线程的执行体,然后在Main中创建几个线程,最后主线程序等待子线程序结束后再退出。 2、创建两个线程,分别向线程传递如下两种类型的参数

    标签: myThread1 myThread2 线程 程序

    上传时间: 2016-12-14

    上传用户:米卡

  • 标准答案习题1 1.1 简述C++语言程序的结构特点。 答: (1)C++程序由一个或多个函数组成

    标准答案习题1 1.1 简述C++语言程序的结构特点。 答: (1)C++程序由一个或多个函数组成,其中至少有一个主函数Main(),程序从主函数开始执行,由主函数来调用其他函数。

    标签: 1.1 标准 函数 语言程序

    上传时间: 2013-12-18

    上传用户:gdgzhym

  • snmp4j 1.8.2版 The org.snmp4j classes are capable of creating, sending, and receiving SNMPv1/v2c/v3

    snmp4j 1.8.2版 The org.snmp4j classes are capable of creating, sending, and receiving SNMPv1/v2c/v3 messages. A SNMP message is composed of its message header and its PDU payload. This package contains three Main groups of classes and interfaces:

    标签: receiving creating classes capable

    上传时间: 2016-12-31

    上传用户:qazxsw

  • #include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h>

    #include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h> #include<sys/types.h> #define PROMPT_STRING "[myshell]$" #define QUIT_STRING "exit\n" static char inbuf[MAX_CANON] char * g_ptr char * g_lim extern void yylex() int Main (void){ for( ){ if(fputs(PROMPT_STRING,stdout)==EOF) continue if(fgets(inbuf,MAX_CANON,stdin)==NULL) continue if(strcmp(inbuf,QUIT_STRING)==0) break g_ptr = inbuf g_lim = inbuf + strlen(inbuf) yylex() } return 0 }

    标签: include gt lt limits

    上传时间: 2016-12-31

    上传用户:colinal

  • 文件及文件夹说明 ==========================================================================================

    文件及文件夹说明 =============================================================================================== \arm\ uC/OS-II移植代码 \SOURCE\ uC/OS-II源码保存在该文件夹 \HostMassLib\ HostMassLib驱动库相关文件存放的文件夹 \HostMassLib\读写U盘模块驱动使用手册.pdf 驱动库使用手册 \UDiskDemo\ 读写U盘驱动演示工程保存的文件夹 \UDiskDemo\queue UART0驱动使用到的队列文件 \UDiskDemo\uart0 UART0驱动源文件 \UDiskDemo\HostMassLib HostMassLib驱动库相关文件存放的文件夹 \UDiskDemo\src\ 工程模板创建文件 \UDiskDemo\src\Main.c 工程主文件,Main函数及各任务在该文件中创建及初始化 \UDiskDemo\src\OS_CFG.H uC/OS-II配置文件 \UDiskDemo\src\config.h 本工程配置文件 \UDiskDemo\src\target.c 目标文件,目标系统初始化在该文件中处理 \UDiskDemo\src\Startup.s LPC2200起动文件 \UDiskDemo\src\IRQ.s 中断句柄设置文件

    标签:

    上传时间: 2017-01-03

    上传用户:chenlong

  • 二叉树的基本操作(1)在二叉链表上设计和实现下列二叉树运算的算法 ① 设计递归算法

    二叉树的基本操作(1)在二叉链表上设计和实现下列二叉树运算的算法 ① 设计递归算法,实现:删除二叉树,求二叉树的高度,求二叉树中叶子结点数,复制二叉树,交换二叉树的左右子树。 ② 设计算法,按自上到下,自左向右的次序,即按层次遍历一棵二叉树。 ③ 设计Main函数,测试上述每个运算。

    标签: 二叉树 算法 基本操作 运算

    上传时间: 2013-12-04

    上传用户:wangdean1101