自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

gongyiling的专栏

白米若雪

  • 博客(3)
  • 收藏
  • 关注

原创 Dijkstra算法代码

#include stdio.h>#include memory.h>#define INF 0x7fffffffint Dijkstra(int* Graph,int N,int a,int b)...{    if(a==b)        return 0;    int* minLength=new int[N];    int i,j;    int length,pointer; 

2007-12-27 22:37:00 695

原创 blowfish算法之VC实现

 #include stdio.h>#include memory.h>#include string.h>#define SBOX_BEGIN 18const unsigned long sbox[4][256]=...{    ...{        0xd1310ba6, 0x98dfb5ac, 0x2ffd72db, 0xd01adfb7, 0xb8e1afed, 0x6a267e

2007-07-04 17:13:00 3233 1

原创 md5 之VC实现

 #include #include #include #include const unsigned int s[4][4]={ {7,12,17,22},{5,9,14,20}, {4,11,16,23},{6,10,15,21}};const unsigned long t[64]={//t[i]=4294967296*fabs(sin(i+1)); 0xd76aa478,0xe8c7b

2007-07-03 12:21:00 2062

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除