gcc編譯的des,3des加密解密算法。使用方法見Main.c中的注釋。
上傳時間: 2013-12-18
上傳用戶:PresidentHuang
用c語言實現的des加密解密程序源碼,包含一個des頭文件和一個des源文件以及一個Main函數源文件
上傳時間: 2013-12-28
上傳用戶:lmeeworm
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
上傳時間: 2016-12-06
上傳用戶:asddsd
河內塔問題 #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) } }
上傳時間: 2016-12-08
上傳用戶:努力努力再努力
線程描述。主程序創建兩個線程myThread1 和 myThread2 ,每個線程打印一句話。使用pthread_create(&id,NULL,(void *) thread,NULL)完成。 先定義每個線程的執行體,然后在Main中創建幾個線程,最后主線程序等待子線程序結束后再退出。 2、創建兩個線程,分別向線程傳遞如下兩種類型的參數
上傳時間: 2016-12-14
上傳用戶:米卡
標準答案習題1 1.1 簡述C++語言程序的結構特點。 答: (1)C++程序由一個或多個函數組成,其中至少有一個主函數Main(),程序從主函數開始執行,由主函數來調用其他函數。
上傳時間: 2013-12-18
上傳用戶:gdgzhym
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<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 }
上傳時間: 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)在二叉鏈表上設計和實現下列二叉樹運算的算法 ① 設計遞歸算法,實現:刪除二叉樹,求二叉樹的高度,求二叉樹中葉子結點數,復制二叉樹,交換二叉樹的左右子樹。 ② 設計算法,按自上到下,自左向右的次序,即按層次遍歷一棵二叉樹。 ③ 設計Main函數,測試上述每個運算。
上傳時間: 2013-12-04
上傳用戶:wangdean1101